QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#799908 | #3821. Parking Lot | rlc202204 | AC ✓ | 1495ms | 42848kb | C++14 | 1.7kb | 2024-12-05 19:30:49 | 2024-12-05 19:30:52 |
Judging History
answer
#include <iostream>
#include <cstdio>
#include <map>
#include <set>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
#define x first
#define y second
#define mp(x, y) make_pair(x, y)
typedef pair<int, int> pii;
set<pii> seg;//(长度,开始位置)
set<pii> s, t;//(l, r) 和 (r, l)
void add(int l, int r) {
seg.insert(mp(r - l + 1, l));
s.insert(mp(l, r));
t.insert(mp(r, l));
}
void del(int l, int r) {
seg.erase(mp(r - l + 1, l));
s.erase(mp(l, r));
t.erase(mp(r, l));
}
map<string, pii> mp;
pii insrt(int len) {
auto cur = seg.lower_bound(mp(len, 0));
if (cur == seg.end())
return mp(-1, -1);
pii res = *cur;
int l = res.second, r = res.first + res.second - 1;
pii ans = mp(l, l + len - 1);
del(l, r);
if (ans.second < r)
add(ans.second + 1, r);
return ans;
}
void mov(int l, int r) {
auto nxt = s.lower_bound(mp(r + 1, 0));
if (nxt != s.end() && (*nxt).first == r + 1) {
int nl = (*nxt).first, nr = (*nxt).second;
del(nl, nr);
r = nr;
}
auto prx = t.lower_bound(mp(l - 1, 0));
if (prx != s.end() && (*prx).first == l - 1) {
int nl = (*prx).second, nr = (*prx).first;
del(nl, nr);
l = nl;
}
add(l, r);
}
int main() {
int d, q;
cin >> d >> q;
d--;
add(0, d);
while (q--) {
char ch;
cin >> ch;
if (ch == 'P') {
string str;
cin >> str;
int len;
cin >> len;
mp[str] = insrt(len);
if (mp[str].first < 0)
cout << "NIE" << endl;
else
cout << mp[str].first << endl;
}
else {
string str;
cin >> str;
if (mp[str].first < 0)
cout << "BRAK" << endl;
else {
mov(mp[str].first, mp[str].second);
cout << "OK" << endl;
}
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3572kb
input:
623968343 69 P 0 18245061 P 0jzcbhqo 20346435 O 0jzcbhqo P 0kw 58869886 P 11vn 14725403 O 0kw P 1ochezw 7882065 P 21lw7 38677243 O 11vn P 21mq33 61950437 O 1ochezw O 21mq33 P 35b4cyd56 28737269 O 35b4cyd56 P 3cfrz 49645952 P 3r6yv5v 4221548 P 4mn5sk0aio 12909332 P 4r7z5on2 2652521 P 5v5qg 25876976 P...
output:
0 18245061 OK 18245061 77114947 OK 18245061 26127126 OK 64804369 OK OK 64804369 OK 64804369 18245061 114450321 22466609 127359653 153236629 OK OK OK OK 64804369 OK OK OK OK 18245061 OK 18245061 63896253 95710096 OK OK OK 18245061 OK 18245061 OK 18245061 56049416 OK 56049416 71515011 91347705 OK 1271...
result:
ok 69 lines
Test #2:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
280640321 25 P 4rk 1489181 P 7et5l1z7 11411252 O 4rk P 81c0iq 7451728 P 8w4mgb9r 14314191 O 81c0iq O 8w4mgb9r P a 2634318 P b 21344841 O a O b P cx9p 10632089 P eki6m8 18852490 O eki6m8 O cx9p P ez9mdrugl3 2154917 O ez9mdrugl3 P fc 18410193 P fcp 18013349 O 7et5l1z7 P g 19313815 P js1jw9p1o 8225285 ...
output:
0 1489181 OK 12900433 20352161 OK OK 12900433 15534751 OK OK 12900433 23532522 OK OK 12900433 OK 12900433 31310626 OK 49323975 0 68637790 84421678 107012825
result:
ok 25 lines
Test #3:
score: 0
Accepted
time: 1ms
memory: 3864kb
input:
445621559 72 P 0870n 10653640 P 17oc67 20219959 O 17oc67 P 1tcm 23837083 O 1tcm P 1wdffn56d 21736462 O 1wdffn56d P 31wbzrk 9660062 O 31wbzrk P 325o 43379192 O 325o P 3pvex9 29110558 P 45v7kf 32168470 O 45v7kf P 4co 16384099 P 4h6 41141801 O 4co P 6 21174094 O 6 O 4h6 P 66 36181766 O 0870n P 7 307225...
output:
0 10653640 OK 10653640 OK 10653640 OK 10653640 OK 10653640 OK 10653640 39764198 OK 39764198 56148297 OK 97290098 OK OK 39764198 OK 0 3072256 75945964 111500320 OK 3072256 OK OK OK OK 75945964 OK 75945964 OK OK 0 8456240 OK 75945964 97468855 0 OK OK 97468855 OK OK OK 0 OK 0 OK 0 75945964 108579676 14...
result:
ok 72 lines
Test #4:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
662478869 68 P 0ts 62259675 P 0yr 12893744 P 2 12054256 O 0ts O 2 P 3 41696903 O 3 P 39gwmo 49962921 P 3ca6 18761918 O 39gwmo P 433hc7ov6m 55764094 O 433hc7ov6m P 4rn0ka 23409336 P 4shm 42634097 O 4rn0ka P 4vd 22459405 O 4vd P 586iu 26517790 P 5b4at0kyiy 41614079 O 586iu O 4shm O 3ca6 O 5b4at0kyiy P...
output:
0 62259675 75153419 OK OK 0 OK 0 75153419 OK 0 OK 0 93915337 OK 0 OK 0 136549434 OK OK OK OK 0 75153419 19546159 OK OK OK 0 OK 0 OK 0 75153419 OK 0 OK 18910436 OK 75153419 OK 21461898 75153419 118299051 OK OK OK OK 0 OK 0 OK 0 54075046 OK 0 75153419 OK 75153419 17876434 56714601 OK 137394075 3137296...
result:
ok 68 lines
Test #5:
score: 0
Accepted
time: 1ms
memory: 3520kb
input:
551945652 36 P 0jf9z0 28821024 P 1 32381996 O 1 P 18nc4bo8 40415673 O 18nc4bo8 P 1gkyt 38577674 O 0jf9z0 P 20fkdvk1ot 39558897 P 4vd3 30751913 P 5f 45744064 P 6 866595 O 6 O 4vd3 P 67dcb2ti2 755942 P 6c2mjo2 32586443 O 67dcb2ti2 P 8ej50848 24310117 P a0fk 16320787 P ck4 8375029 P d8srruwqak 6666090 ...
output:
0 28821024 OK 28821024 OK 28821024 OK 67398698 106957595 137709508 0 OK OK 0 183453572 OK 0 106957595 123278382 216040015 OK OK OK 216040015 67398698 OK OK OK 67398698 123278382 216040015 86227087 OK OK OK 67398698
result:
ok 36 lines
Test #6:
score: 0
Accepted
time: 1ms
memory: 3608kb
input:
903908631 69 P 18 51647460 P 19t36p6m74 83818091 P 1gha 715554 P 22ujzhd 58320993 P 2j 35210768 P 2uoq2yqp9g 88201715 P 3 51057619 P 32gt0paz 79140486 P 35 62731287 P 4hyhsp5fg 87942527 P 54m9u14jl 45378715 P 5bw5dfp6 68117044 O 3 P 6jfwfr1vs 36456972 P 6nlcllecf 64785770 O 6nlcllecf O 35 O 18 P 7e3...
output:
0 51647460 135465551 136181105 194502098 229712866 317914581 368972200 448112686 510843973 598786500 644165215 OK 317914581 712282259 OK OK OK 712282259 0 OK OK 785391263 OK NIE BRAK NIE 598786500 0 BRAK NIE OK NIE BRAK OK BRAK 871272835 OK 135465551 598786500 OK OK 354371553 OK 598786500 OK 4481126...
result:
ok 69 lines
Test #7:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
903482160 4 P 0sk 12399768 P mh4usre9 39895251 P tle 14784323 P uq2f 73054387
output:
0 12399768 52295019 67079342
result:
ok 4 lines
Test #8:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
548284015 14 P 3j6as 52737834 P 5za8w 16459662 P 6n 48806332 P 7qhcbys 33876453 P e 3642089 O 6n O 7qhcbys O 5za8w P gnrtws 50787917 P i 8979889 P kua27t6u6g 44432403 O gnrtws O i O e
output:
0 52737834 69197496 118003828 151880281 OK OK OK 52737834 103525751 155522370 OK OK OK
result:
ok 14 lines
Test #9:
score: 0
Accepted
time: 1ms
memory: 3580kb
input:
61940097 67 P 0smxfn2l7w 4012845 P 13p8m 1109344 P 1po6ah 3891906 P 1x 6006789 O 0smxfn2l7w O 13p8m P 25oip0 3995701 O 25oip0 P 2qga 4689952 P 3i2qbgw 4753802 O 2qga P 49d4obq59 4488370 P 8t6 6103882 O 3i2qbgw O 8t6 O 49d4obq59 O 1po6ah P 8y 2140897 O 8y P 9 3186002 P 9o40 3034483 P aiuxk1wc 2476947...
output:
0 4012845 5122189 9014095 OK OK 0 OK 0 15020884 OK 0 19774686 OK OK OK OK 0 OK 0 3186002 6220485 OK 0 OK OK 0 OK 2602179 OK OK 2602179 5718154 OK 5718154 OK OK 2602179 OK 2602179 6628799 11219561 OK 16919119 2602179 OK 2719404 3286426 OK OK OK 11219561 OK 11219561 OK OK 0 OK OK 0 OK 0 OK 0 2944104 O...
result:
ok 67 lines
Test #10:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
28660276 6 P 4tdeg4m8g 1487248 P 85zc0v 2463357 P g7w 2563851 O 4tdeg4m8g O g7w P i3 1464936
output:
0 1487248 3950605 OK OK 0
result:
ok 6 lines
Test #11:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
548072494 51 P 0 54021198 P 1b 44236223 P 1n2sm8 3244437 O 0 P 1p7 19469863 O 1p7 P 2 48379279 P 28 9209463 P 5rz84nwh 15445433 P 6pm6d 41101116 P 6y4 48069257 O 28 P 9bhgj 4775036 O 6y4 O 1b O 9bhgj P 9cieal9 27832535 P 9xfxnwt1 12328982 P a3pajblfep 28961683 O a3pajblfep P bnjyu 46969961 P cj5ah2g...
output:
0 54021198 98257421 OK 0 OK 0 101501858 110711321 126156754 167257870 OK 48379279 OK OK OK 48379279 76211814 167257870 OK 167257870 214227831 OK OK OK OK OK OK 0 OK 0 48322291 59079867 74761952 167257870 202035789 OK OK OK OK 74761952 167257870 OK 74761952 81986665 88901984 91165622 OK OK OK 167257870
result:
ok 51 lines
Test #12:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
360418485 19 P 0zid7e 15586600 P 1r 21855065 O 0zid7e P 64jnodnh2w 25965523 O 64jnodnh2w P 6oz9ia 23400067 P 9vfzu 8800417 P cf1 3148532 P d5u5lqafz 7883807 P d9jl 7476512 O 6oz9ia P dbivf 7757124 O dbivf O cf1 P dpg4nu 18905223 O 1r O dpg4nu O d5u5lqafz P f5eksuhqyr 24425313
output:
0 15586600 OK 37441665 OK 37441665 0 8800417 60841732 68725539 OK 37441665 OK OK 37441665 OK OK OK 8800417
result:
ok 19 lines
Test #13:
score: 0
Accepted
time: 1ms
memory: 3572kb
input:
356027383 71 P 0 33710903 P 1erqcci4 5942328 O 1erqcci4 P 1pp16o2 17871809 O 1pp16o2 P 1xzc44pn1 26277564 P 2 25084304 O 2 P 2dppx8 3466102 O 1xzc44pn1 O 0 P 30zru2x8 22950086 P 3c 7830164 O 3c P 4 11141159 P 40g1sh2 18244862 P 5p 12842943 O 40g1sh2 O 30zru2x8 P 6 14579973 O 5p O 6 O 4 P 65docnqq 25...
output:
0 33710903 OK 33710903 OK 33710903 59988467 OK 59988467 OK OK 0 22950086 OK 22950086 34091245 63454569 OK OK 0 OK OK OK 0 25460731 63454569 OK OK OK 0 OK 0 19742608 OK 19742608 36125428 63454569 41561356 98329741 132023150 OK OK OK OK 0 OK OK 63454569 OK OK OK 0 OK 0 24135873 OK OK 36855812 0 692337...
result:
ok 71 lines
Test #14:
score: 0
Accepted
time: 0ms
memory: 3792kb
input:
580375580 39 P 0lcy 14818957 P 1shp03rr8 45457105 O 1shp03rr8 P 1z8 31653526 P 5aokyk 12405823 O 1z8 O 5aokyk P 5by7 43511970 P 7i 56091147 O 5by7 P 87stme13qw 51902659 P 8et1dl3rlw 12555136 P 9l8x97j 32111881 P a94u 52034228 O a94u O 9l8x97j O 8et1dl3rlw O 87stme13qw P akg117jc 42844207 O akg117jc ...
output:
0 14818957 OK 14818957 46472483 OK OK 14818957 58330927 OK 114422074 14818957 166324733 198436614 OK OK OK OK 14818957 OK 14818957 114422074 OK 14818957 OK OK 114422074 14818957 159734504 30062690 208144702 224616667 48575956 OK OK OK 14818957 276478260 OK
result:
ok 39 lines
Test #15:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
40471358 97 P 0 314122 P 07h0dsjj 1070141 O 0 P 0883e1g2 3052204 P 0sdzvrz 3629923 O 0883e1g2 P 2 3264442 O 2 P 2bq 3254434 O 2bq P 2y2v 2224287 P 2z9lbourv 3538463 P 304tg25 1784103 O 2z9lbourv P 30jh6un65 2208484 O 30jh6un65 P 34gn2x 524579 P 3mu78z 138566 O 34gn2x O 0sdzvrz P 41pae 2741711 O 41pa...
output:
0 314122 OK 1384263 4436467 OK 8066390 OK 8066390 OK 1384263 8066390 11604853 OK 8066390 OK 3608550 4133129 OK OK 4271695 OK 4271695 OK OK 1384263 OK OK 0 OK 4271695 5994147 6466135 OK 9934505 OK 3972637 13843484 OK OK OK OK 4271695 OK 4271695 5921568 OK OK OK 3972637 OK 3972637 6206659 9927374 OK O...
result:
ok 97 lines
Test #16:
score: 0
Accepted
time: 1ms
memory: 3632kb
input:
121335089 73 P 0gfkex5 5674600 P 0r5d0k 1864915 O 0r5d0k P 1 2679442 P 12debb 4337562 P 17rr6hw3fm 2064693 P 17ss0 2439370 P 2h0nx28 2738383 P 2s 10305431 P 3g 7258473 P 41ix4he 1160557 P 59fo4ff 7410655 O 0gfkex5 O 1 O 2h0nx28 P 6dw0r1 6416565 P 6m 6692093 O 6dw0r1 O 2s O 17ss0 O 59fo4ff O 12debb P...
output:
0 5674600 OK 5674600 8354042 12691604 14756297 17195667 19934050 30239481 37497954 38658511 OK OK OK 0 46069166 OK OK OK OK OK 38658511 0 14756297 OK OK OK 38658511 5957704 OK 38658511 OK 9647342 OK 22293240 OK OK OK OK 5957704 OK 5957704 OK 5957704 OK 22293240 OK 5957704 OK OK 0 OK 0 OK 0 22293240 ...
result:
ok 73 lines
Test #17:
score: 0
Accepted
time: 1ms
memory: 3864kb
input:
509101417 50 P 12sgir 37155295 P 19 141727 O 12sgir P 22nfaxe1 35595026 P 33o0ra7g 13708835 O 19 P 41 13857426 P 58640 26851160 P 5i9 12716071 P 6f 28725796 O 5i9 O 58640 P 7o5vyyi3px 5114571 O 7o5vyyi3px P 8 25352370 P 8de7ijgjfm 49469536 O 8 O 41 P 8ead 32587161 P 8kjch3 5790563 O 8kjch3 P 8u8k6zg...
output:
0 37155295 OK 0 37297022 OK 51005857 64863283 91714443 104430514 OK OK 64863283 OK 64863283 133156310 OK OK 51005857 83593018 OK 182625846 83593018 OK 230647656 OK OK OK OK 0 OK 0 51005857 182625846 200023579 OK OK OK 0 133156310 24501652 151351823 51005857 241952590 OK 264857070 295428582 330792903...
result:
ok 50 lines
Test #18:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
704943792 36 P 0 48182451 P 0p4yfj 64841305 O 0 P 1 8134016 P 1dm 20089236 P 1mgl 43200584 O 1 P 2lrrmlsv 34457673 O 2lrrmlsv P 3y 55652549 O 1mgl O 1dm P 6vybm9hr 56572328 P 7k8vfl 33981170 O 6vybm9hr P a9 61627545 O 3y O 0p4yfj O a9 P b1z9 55363291 P bjwoccba 24713830 O bjwoccba O 7k8vfl P ey49w 1...
output:
0 48182451 OK 0 8134016 113023756 OK 156224340 OK 156224340 OK OK 211876889 113023756 OK 211876889 OK OK OK 0 55363291 OK OK 55363291 67012149 OK OK 55363291 OK 55363291 58362494 77853145 98627218 160345478 OK 179641974
result:
ok 36 lines
Test #19:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
672858101 56 P 0mx30 25585093 P 2 52404366 O 0mx30 P 27xr5cz7 47898821 O 27xr5cz7 P 2gyygv9f7q 9157450 P 2lnxtd 29000287 P 2vks 10579393 O 2vks P 3akkpag 50061867 P 3p 46728463 P 4dmapqej6 28779329 O 2lnxtd P 5c 57181511 P 6il 60129766 O 2gyygv9f7q O 5c P 7qup 15293038 P 7x42k 12926921 P 8xszh6 4153...
output:
0 25585093 OK 77989459 OK 0 77989459 9157450 OK 106989746 157051613 203780076 OK 232559405 289740916 OK OK 0 77989459 232559405 OK OK 203780076 OK OK 90916380 203780076 OK OK OK OK 77989459 15293038 96642124 101812347 203780076 OK OK OK 203780076 239151797 273333186 OK 273333186 15293038 311719384 O...
result:
ok 56 lines
Test #20:
score: 0
Accepted
time: 1ms
memory: 3864kb
input:
840260462 35 P 0i 53676933 P 1pef 62570248 P 3 29788714 P 3vsg4id9vd 42285105 P 4rh 16347912 O 0i P 67lbgstgp 60353773 O 67lbgstgp O 3 O 4rh P 75yy79t2sm 53342177 P 8tuxb3 31777211 O 8tuxb3 P 9p3 69787245 P c3fc7o2ig 70714761 P c3wfmx6ao 29606397 P cl1sfu 66989637 O c3wfmx6ao O 3vsg4id9vd O cl1sfu O...
output:
0 53676933 116247181 146035895 188321000 OK 204668912 OK OK OK 0 188321000 OK 188321000 258108245 116247181 328823006 OK OK OK OK OK OK 0 58516912 OK OK 0 OK 0 OK 0 OK 0 OK
result:
ok 35 lines
Test #21:
score: 0
Accepted
time: 1ms
memory: 3632kb
input:
392558917 484 P 0 7770248 P 01iubi 30115900 P 023mtq 20772898 P 02js7k6c7z 26698760 P 03u7chvy 12518101 P 04dcjtd 37459586 P 08 24880705 P 08ho 7582750 P 08t211b 30686771 P 0b2w 18583361 P 0bn5pnc 9815236 P 0c 17696072 P 0g5kat58fp 6303321 P 0nvmp 271183 P 0pe 1718741 P 0t60doj 16115412 P 0x0 110250...
output:
0 7770248 37886148 58659046 85357806 97875907 135335493 160216198 167798948 198485719 217069080 226884316 244580388 250883709 251154892 252873633 268989045 280014128 305795348 314403024 323236350 355308606 NIE NIE NIE NIE NIE 384322781 NIE NIE NIE NIE 385787588 NIE NIE NIE NIE NIE NIE NIE NIE 389455...
result:
ok 484 lines
Test #22:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
524042491 254 P 08 6793031 P 08unbsn 34377310 P 0ayibrpke 45478598 P 0cz2vc4 35455490 P 0d9i 27808266 P 0h3mvpm 36772361 P 0j 4157544 P 0nk07aycj2 44437141 P 1 14120288 P 12ahw4f 24770801 P 13skbiz 23957474 P 17vgw 50551180 P 1j 15308877 P 1la2joey2p 51152519 P 20 14490324 P 29a 34628417 P 2b471soj ...
output:
0 6793031 41170341 86648939 122104429 149912695 186685056 190842600 235279741 249400029 274170830 298128304 348679484 363988361 415140880 429631204 464259621 482947054 491819240 NIE 514089418 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 254 lines
Test #23:
score: 0
Accepted
time: 2ms
memory: 3672kb
input:
997742403 840 P 0 81554550 P 00pwywuzt 69831014 P 02l3 69743437 P 02r9 1982362 P 049hj 10309145 P 07j0ug 69563814 P 08h3rbw 18369214 P 0an6m6sp 45368226 P 0autsfrjni 46922310 P 0c1zmkd 57719092 P 0dpfbd7jpd 50593418 P 0ee0fmni 85849482 P 0evrbcy5 91842322 P 0j 91359658 P 0rh621tsr 16556584 P 0ylp 86...
output:
0 81554550 151385564 221129001 223111363 233420508 302984322 321353536 366721762 413644072 471363164 521956582 607806064 699648386 791008044 807564628 893802227 NIE 968250093 NIE NIE NIE NIE 983628217 NIE NIE 997024761 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 840 lines
Test #24:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
823706397 847 P 0 67244916 P 000qlam1 14407635 P 001n2d0r 75257459 P 01w9wpyys 33007506 P 02sg0or38 2305714 P 03jc2la0 14952787 P 03lgv6pibm 18264024 P 06 42404854 P 06pp 43085420 P 07nytm 54753563 P 08k 81611740 P 08l 45452779 P 0d 42981610 P 0d9sv 74596381 P 0dx18fs1 56933088 P 0g12 28928442 P 0g3...
output:
0 67244916 81652551 156910010 189917516 192223230 207176017 225440041 267844895 310930315 365683878 447295618 492748397 535730007 610326388 667259476 696187918 773276866 NIE NIE NIE 787512809 NIE 806827790 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 817600485 NIE 821338942 NI...
result:
ok 847 lines
Test #25:
score: 0
Accepted
time: 1ms
memory: 3800kb
input:
246968521 199 P 06m 722443 P 09exy8lgl 24446531 P 161k0e 19403122 P 19 17974998 P 1k3wjkksuc 9989652 P 1rn 11815976 P 1t1r9z9vg 10271121 P 1uj8ck1o14 7451553 P 1y1 17604397 P 26ivou 8199380 P 280xghx 2886859 P 2cxwn1 24682919 P 2h 11817520 P 2u1xj5rxl0 3306327 P 2whxj0 23436455 P 3 19085263 P 38 200...
output:
0 722443 25168974 44572096 62547094 72536746 84352722 94623843 102075396 119679793 127879173 130766032 155448951 167266471 170572798 194009253 213094516 NIE 233122169 NIE NIE 242705863 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE...
result:
ok 199 lines
Test #26:
score: 0
Accepted
time: 1ms
memory: 3852kb
input:
984490246 461 P 0 79632923 P 0ki0bn 21758000 P 0m7 44250601 P 0ma 80634236 P 0qggj7r 32294882 P 0v4ax 35837524 P 0v55g 38630571 P 0vo3ch46vp 7533971 P 0zpmh 94498568 P 14jwr 42968276 P 14sqc 90653215 P 1a9qpk 32237765 P 1oatzit0lh 15952989 P 1r 44219499 P 1scm46r0 87433434 P 1vpjdmt 67522022 P 2 357...
output:
0 79632923 101390923 145641524 226275760 258570642 294408166 333038737 340572708 435071276 478039552 568692767 600930532 616883521 661103020 748536454 816058476 851836363 868273416 NIE NIE NIE NIE 938828866 966809954 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 976471658 NIE NIE NIE NIE NIE N...
result:
ok 461 lines
Test #27:
score: 0
Accepted
time: 1ms
memory: 3532kb
input:
90769326 266 P 02w1z5e 6015081 P 08cjp 6615277 P 09s8 4708569 P 09v 5264933 P 0a20jah 984879 P 0aadrj13 4936968 P 0afy8adbf 6723714 P 0x1ebz 1009728 P 0zqktg9 7582536 P 18 2510141 P 1c1t9sftn 1835084 P 1efpl 3399412 P 1fz8u 7991904 P 1h 5447752 P 1ibeiw83cl 2799766 P 1lnq 6872451 P 1lvj2pd 1218451 P...
output:
0 6015081 12630358 17338927 22603860 23588739 28525707 35249421 36259149 43841685 46351826 48186910 51586322 59578226 65025978 67825744 74698195 75916646 76636849 85519344 NIE 85826860 89469808 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 89562199 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 266 lines
Test #28:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
209201065 313 P 0 14827852 P 02 17030675 P 02ksjvc 12274440 P 06rarfu 16086946 P 0bfrbr 1524106 P 0ihoja0d50 13455246 P 0sv 14761117 P 0xicizc 11113320 P 0yslatd 2189567 P 1 17919865 P 13ms 6724976 P 15oyc1 16782834 P 19l3 924811 P 1g81 20834188 P 1plm478 8362975 P 1r47r 9648204 P 1uwnc2m 4203174 P ...
output:
0 14827852 31858527 44132967 60219913 61744019 75199265 89960382 101073702 103263269 121183134 127908110 144690944 145615755 166449943 174812918 184461122 188664296 NIE NIE NIE NIE NIE NIE NIE 202284035 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 205475935 NIE 205905735 NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 313 lines
Test #29:
score: 0
Accepted
time: 2ms
memory: 3700kb
input:
874113995 666 P 0 56593530 P 00q1 4427951 P 01lz8h8y1 38513680 P 023rz 6949246 P 04cdu6cxf 23101930 P 04w27ue6dh 57876887 P 05exlcb 61238088 P 09r 4108902 P 0a2i 47458633 P 0c 82644015 P 0hg9xb 61381601 P 0lbefpa3v 61889740 P 0ll5hmbaux 86740092 P 0ropowd 42870537 P 1 25524667 P 10tb6 12652344 P 11k...
output:
0 56593530 61021481 99535161 106484407 129586337 187463224 248701312 252810214 300268847 382912862 444294463 506184203 592924295 635794832 661319499 673971843 759651427 NIE NIE NIE NIE 837152408 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 869570965 NIE NIE 870678317 NIE NIE NIE N...
result:
ok 666 lines
Test #30:
score: 0
Accepted
time: 2ms
memory: 3696kb
input:
401908349 645 P 0 30809883 P 02k7 33209111 P 02s 31975219 P 046e0jf714 18083837 P 06h 11065044 P 0c6p73omq2 30445695 P 0d 33789706 P 0f 22879480 P 0f8bnpz 13441083 P 0g27f3 24087460 P 0gb 33505784 P 0o0k9lon94 29184907 P 0tvn11b 37947088 P 0vf 36200453 P 0zbyf 324069 P 1 31173443 P 10 16131240 P 133...
output:
0 30809883 64018994 95994213 114078050 125143094 155588789 189378495 212257975 225699058 249786518 283292302 312477209 350424297 386624750 NIE NIE 386948819 388455750 NIE NIE NIE NIE NIE NIE NIE NIE NIE 394592490 NIE NIE NIE NIE NIE NIE 399636189 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 645 lines
Test #31:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
830896940 440 P 0 60051219 P 0bibfw7 33315121 P 0ch0t2t 44018009 P 0d 17215850 P 0fjj 80773350 P 0fl 25294888 P 0g4hjg40o 30001863 P 0i4xay6p 31288578 P 0kgzaf 22100884 P 0nzytuwv1 10635249 P 0saeruw 53337502 P 0tjwcpt 51590137 P 0tx 19946538 P 0vv 43666504 P 0z 46070325 P 0z1c 54005350 P 1 31951312...
output:
0 60051219 93366340 137384349 154600199 235373549 260668437 290670300 321958878 344059762 354695011 408032513 459622650 479569188 523235692 569306017 623311367 655262679 658655861 690956388 754695523 764083370 782480791 NIE 812612642 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NI...
result:
ok 440 lines
Test #32:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
528872176 211 P 01ygs 32284834 P 04xvepvs 8393011 P 0z 30052880 P 0z98st 4859043 P 1 43589906 P 17g 4655675 P 1abz0 1789619 P 1jsn01l4l2 52676375 P 1l 2828665 P 1sb475ab 9499143 P 1wxm 44088045 P 1x29n0 48555081 P 2 41981357 P 26i5k26 51263757 P 2euzy4 6661760 P 2px 44550070 P 2rz 25677711 P 34 3043...
output:
0 32284834 40677845 70730725 75589768 119179674 123835349 125624968 178301343 181130008 190629151 234717196 283272277 325253634 376517391 383179151 427729221 453406932 483838021 NIE NIE 509430938 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 211 lines
Test #33:
score: 0
Accepted
time: 2ms
memory: 3652kb
input:
190737059 676 P 0 9748380 P 00188sn 18158030 P 052ah 11347546 P 0afm20z03 6892297 P 0b 13103908 P 0c81vrr 3710734 P 0ce6e 9088313 P 0dq 16833559 P 0ew 15511383 P 0fcn81ce 15396526 P 0fmfe 11336559 P 0g4fbn582 1184890 P 0g6 8548240 P 0hwfuu 15034152 P 0jr 4479874 P 0kiv7hq 16893192 P 0lhqizr49q 63307...
output:
0 9748380 27906410 39253956 46146253 59250161 62960895 72049208 88882767 104394150 119790676 131127235 132312125 140860365 155894517 160374391 177267583 183598321 184366727 NIE 184780609 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 676 lines
Test #34:
score: 0
Accepted
time: 1ms
memory: 3864kb
input:
276942860 147 P 0dly3v91 1971376 P 1551d1i7ou 27458099 P 172td 439458 P 1nnt0afo9 11980329 P 1ub4 11245951 P 2t7iux52o9 17845499 P 3 22103453 P 32zbjehy 4981992 P 39 22285287 P 3fp96i8g 2321673 P 3j 21897958 P 41sb762 8530861 P 4a55hiimi 2197662 P 4pic672wp 19761477 P 4yo5l3ndg 5880248 P 4zclp 86921...
output:
0 1971376 29429475 29868933 41849262 53095213 70940712 93044165 98026157 120311444 122633117 144531075 153061936 155259598 175021075 180901323 189593521 199076001 218662791 232539237 245540376 NIE NIE NIE NIE NIE NIE NIE NIE 265383864 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 147 lines
Test #35:
score: 0
Accepted
time: 2ms
memory: 3608kb
input:
110633475 938 P 0 529339 P 00 10165967 P 03qjhpcvyp 4022095 P 0464zclo 4834826 P 04s6eb87s 2808377 P 04yq955w 9032325 P 06rh2 10486327 P 07 6922801 P 08e 6424370 P 0a 6713650 P 0a21xvp 5405499 P 0b 10471293 P 0c 5712482 P 0ck79bkpk 10125221 P 0e 1574842 P 0e3nypvz0e 5718302 P 0ettip5 10271422 P 0fhu...
output:
0 529339 10695306 14717401 19552227 22360604 31392929 41879256 48802057 55226427 61940077 67345576 77816869 83529351 93654572 95229414 NIE 100947716 NIE 101358645 NIE 107128433 NIE NIE 108541630 NIE NIE NIE NIE NIE NIE 110208013 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 110381090 NIE NIE NIE NIE N...
result:
ok 938 lines
Test #36:
score: 0
Accepted
time: 5ms
memory: 3776kb
input:
546964730 4934 P 0 36915018 P 0021 33866929 P 00fj0 54012407 P 00k2 38522902 P 00p 15383277 P 00pdcw8 7990193 P 01 40534364 P 0130e 9190547 P 01a62om 9928426 P 01cno46at 17517240 P 01onsml 25126422 P 02bkf 36145359 P 02btmsacwj 40530760 P 02hx 35030508 P 02l 40294231 P 02m75ku7v1 8273620 P 03 534704...
output:
0 36915018 70781947 124794354 163317256 178700533 186690726 227225090 236415637 246344063 263861303 288987725 325133084 365663844 400694352 440988583 449262203 502732667 NIE NIE NIE NIE NIE NIE NIE NIE 531723105 542697855 NIE NIE NIE NIE NIE NIE NIE NIE NIE 543604613 NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 4934 lines
Test #37:
score: 0
Accepted
time: 3ms
memory: 3616kb
input:
409297164 1229 P 0 37671794 P 01bgngk 17639678 P 041j 6350116 P 05zsc 22906151 P 06cpg 27105265 P 07m0r 824786 P 08x648ncs 39474940 P 096x3a23 15695813 P 09ym 193040 P 0ayo7vqx8 40926944 P 0b 40082146 P 0fg61u 37772243 P 0h8qa 10979024 P 0j 349536 P 0lbboyx9 6986757 P 0lo 40453469 P 0m 8413784 P 0m7...
output:
0 37671794 55311472 61661588 84567739 111673004 112497790 151972730 167668543 167861583 208788527 248870673 286642916 297621940 297971476 304958233 345411702 353825486 370333358 NIE NIE NIE 394201677 397987815 NIE NIE NIE 403599146 NIE NIE NIE NIE NIE NIE NIE 408852744 NIE NIE NIE NIE NIE NIE NIE NI...
result:
ok 1229 lines
Test #38:
score: 0
Accepted
time: 3ms
memory: 3776kb
input:
76609502 2738 P 0 4336946 P 009dr5 5276265 P 00qo4tks 4221197 P 013dmed 6103931 P 01eyp 6319551 P 01kb6z63l 1230290 P 05ciaxqo 4475775 P 06ijegi8kq 508788 P 06ixy17fzl 5678120 P 07 2139042 P 07j9 3732844 P 08pgwl 3918486 P 08tywjhq19 7063955 P 08xg4 347592 P 0a 1574542 P 0abzhof5y 2158509 P 0afvy 51...
output:
0 4336946 9613211 13834408 19938339 26257890 27488180 31963955 32472743 38150863 40289905 44022749 47941235 55005190 55352782 56927324 59085833 64223996 65077447 71890219 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 76454277 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 2738 lines
Test #39:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
639467882 1140 P 0 1845305 P 02xk4 51228585 P 03b42enpw7 55691700 P 05h41zzdn 27572459 P 05ylbicfd 22322495 P 06i 43209056 P 06tt2dbtu 9929747 P 07gf60o 40681481 P 07hueo30bf 36484538 P 08y 3031701 P 09fpa8ea 22157831 P 09u0zte 46604072 P 0cd5m 46106416 P 0cihc26r 2293481 P 0cqo0o 407793 P 0d4k9fm0f...
output:
0 1845305 53073890 108765590 136338049 158660544 201869600 211799347 252480828 288965366 291997067 314154898 360758970 406865386 409158867 409566660 460014877 506734787 559175900 606924156 618662315 NIE 622518850 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE...
result:
ok 1140 lines
Test #40:
score: 0
Accepted
time: 4ms
memory: 4020kb
input:
69662774 3917 P 0 3296795 P 00gi1u 3680660 P 00lm2drt 3471082 P 01 4892583 P 01b1sf 3150521 P 01i1ztf7qj 2889528 P 034wiu 3070245 P 0359og 2206561 P 04snpzs5mu 5561320 P 04ukqzgz1 5176011 P 05 3645501 P 055j6zdl51 4698576 P 05m6317 1125406 P 05v48lb5zd 6962346 P 06 2161343 P 06bllg 69737 P 07 392022...
output:
0 3296795 6977455 10448537 15341120 18491641 21381169 24451414 26657975 32219295 37395306 41040807 45739383 46864789 53827135 55988478 56058215 59978438 63134945 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 69494040 NIE NIE NIE NIE NIE NIE NIE NIE BRAK ...
result:
ok 3917 lines
Test #41:
score: 0
Accepted
time: 5ms
memory: 3676kb
input:
523607395 2634 P 0 42677225 P 00d 45808875 P 00mq4n 20505549 P 01260o 17368704 P 01ggt 24928932 P 02 12157755 P 03 38435246 P 036ddd3 40746966 P 03c46q 27369335 P 05 29782226 P 050r 10094548 P 05382k 18437681 P 0554 50962906 P 05bs 29280621 P 06 5907707 P 07a80n7ex 31594904 P 07l8c40mk 24809298 P 08...
output:
0 42677225 88486100 108991649 126360353 151289285 163447040 201882286 242629252 269998587 299780813 309875361 328313042 379275948 408556569 414464276 446059180 470868478 471917066 472456973 499669868 509955539 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 523505272 NIE NIE NIE NIE ...
result:
ok 2634 lines
Test #42:
score: 0
Accepted
time: 6ms
memory: 3692kb
input:
177276430 2969 P 0 16918815 P 000fpib75f 10521682 P 00czr2nn 7991822 P 00edbx 11937172 P 00xdsd 3386960 P 01 4356567 P 01id 10376988 P 01sc 294799 P 01z07gq 2954576 P 02pen2po73 7181630 P 02t59tl 12003872 P 03 8287426 P 03xrw 11597997 P 04 10537570 P 040vv 1861774 P 049o2l8 12346141 P 04j 13613232 P...
output:
0 16918815 27440497 35432319 47369491 50756451 55113018 65490006 65784805 68739381 75921011 87924883 96212309 107810306 118347876 120209650 132555791 146169023 152232975 159217320 167181176 NIE NIE 176145901 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 2969 lines
Test #43:
score: 0
Accepted
time: 4ms
memory: 3764kb
input:
517195934 3960 P 0 37138182 P 002dp0ng62 37620736 P 00n9uy06 31334157 P 01j 13836665 P 01swzl 25050875 P 024rj 49379273 P 02ec 32467237 P 02gevst96 190422 P 03o797 36797939 P 03qk0 50396180 P 049x2hwngs 4584205 P 04t9j81af 38171602 P 04ua4snh 12720515 P 05d9qu4v 36580815 P 05v 31123206 P 05za9tdvmn ...
output:
0 37138182 74758918 106093075 119929740 144980615 194359888 226827125 227017547 263815486 314211666 318795871 356967473 369687988 406268803 437392009 476901047 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 499483774 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NI...
result:
ok 3960 lines
Test #44:
score: 0
Accepted
time: 2ms
memory: 3704kb
input:
469849290 1816 P 0 10074884 P 00pp4h4y 15487426 P 01mfdhz99 22050434 P 01wmp 37716574 P 02c 39175980 P 02q 30200171 P 03fdefv 12610554 P 046ho7 40478686 P 063nzh 5084457 P 07 37325778 P 07iv 19338623 P 07lvmi7 43763251 P 08pobr 38866332 P 092 5848722 P 0ab 29071443 P 0ao 34900709 P 0b 3038904 P 0buq...
output:
0 10074884 25562310 47612744 85329318 124505298 154705469 167316023 207794709 212879166 250204944 269543567 313306818 352173150 358021872 387093315 421994024 425032928 447652275 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NI...
result:
ok 1816 lines
Test #45:
score: 0
Accepted
time: 4ms
memory: 3928kb
input:
492680910 1628 P 0 23771610 P 00 38231186 P 0151 22600316 P 033on0wux 39637918 P 03s9 22160513 P 041m 12906513 P 04st6sakle 31048058 P 06eqr 16022627 P 07r 38004791 P 08 31034674 P 09 43104421 P 093rgqbnhb 32242094 P 097dvaq1 15987614 P 09q1tnde6 41512929 P 0df 13852886 P 0dmk1qdbrg 43409222 P 0epi ...
output:
0 23771610 62002796 84603112 124241030 146401543 159308056 190356114 206378741 244383532 275418206 318522627 350764721 366752335 408265264 422118150 465527372 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 484810527 NIE NIE 491429297 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 1628 lines
Test #46:
score: 0
Accepted
time: 7ms
memory: 3988kb
input:
870022244 3055 P 0 25202261 P 000 85896281 P 015z 24013213 P 01q8re 23519332 P 01vvf 37355189 P 01wc7vi 24970142 P 01x6jq 64937302 P 01x8 44471895 P 02 34673582 P 029bfvltj 50181449 P 02q 2536929 P 02w1 66308631 P 03fc5 8827480 P 03y379t 75994275 P 04 51265670 P 051pm5pnrs 68052200 P 05lxtuw 1129590...
output:
0 25202261 111098542 135111755 158631087 195986276 220956418 285893720 330365615 365039197 415220646 417757575 484066206 492893686 568887961 620153631 688205831 699501737 757844991 780030695 849791005 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 863692272 NIE N...
result:
ok 3055 lines
Test #47:
score: 0
Accepted
time: 0ms
memory: 3920kb
input:
981132119 1511 P 0 27075103 P 02ch4 18634001 P 02l45320 78492247 P 03xh 76709700 P 046puxhqp 21147924 P 048cppuq 59889001 P 06m1c4 31769222 P 081q2a 62357413 P 081y9vx 71797355 P 09 25608072 P 0b3 20770183 P 0btmlixqdh 78117742 P 0colyr9eed 5204603 P 0dlish 13614702 P 0dq 61038701 P 0du 10678683 P 0...
output:
0 27075103 45709104 124201351 200911051 222058975 281947976 313717198 376074611 447871966 473480038 494250221 572367963 577572566 591187268 652225969 662904652 725391537 814467157 819872603 910110506 NIE NIE NIE NIE NIE 918687576 930428039 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 1511 lines
Test #48:
score: 0
Accepted
time: 5ms
memory: 3980kb
input:
590397000 3747 P 0 7359830 P 00bm 47027067 P 00f 8894745 P 00h35acijs 6651872 P 00lymah9e 23390776 P 00nk9rcxx 25112159 P 00tq 39734275 O 00h35acijs O 0 P 014e69 28020294 O 00f P 014z0s 46455773 O 00lymah9e P 02cid71 5712386 O 00nk9rcxx P 02dmf 1427038 O 014e69 P 02oa8sfru 6363115 P 02xfxu 4330137 P...
output:
0 7359830 54386897 63281642 69933514 93324290 118436449 OK OK 158170724 OK 186191018 OK 0 OK 5712386 OK 158170724 164533839 168863976 OK 54386897 OK OK OK 90158322 0 OK OK 177415144 OK 216824146 OK 216824146 OK 90158322 OK 216824146 OK 90158322 49971376 128153790 131198154 249911468 OK OK OK 2499114...
result:
ok 3747 lines
Test #49:
score: 0
Accepted
time: 3ms
memory: 3768kb
input:
62191866 3115 P 0 6161322 P 00 1006671 P 003x 966669 P 00c 5909601 P 00cr02pj 2187715 P 01frdfg 5762387 P 01uedpjn3h 1784616 P 02c 2072656 O 0 P 02ol12bsg 3994419 P 03 4148509 P 03pzv4 5260208 O 00c P 03z3 5768482 O 03z3 P 04r 1569690 P 05 5939741 O 03 O 01frdfg P 05xnmq 2757950 O 02c O 003x P 06gf0...
output:
0 6161322 7167993 8134662 14044263 16231978 21994365 23778981 OK 0 25851637 30000146 OK 8134662 OK 3994419 35260354 OK OK 25851637 OK OK 16231978 OK OK OK 16231978 OK 16231978 23778981 OK OK 20471600 26403769 27977480 3994419 6762918 9718194 OK OK OK OK 9718194 OK OK OK 26403769 9718194 OK OK OK 264...
result:
ok 3115 lines
Test #50:
score: 0
Accepted
time: 5ms
memory: 3676kb
input:
601832793 2366 P 0 47818315 P 00nzy9ph8 7727099 P 01a 31082780 P 01m8n9h4 46728615 P 01zpk 50951348 P 02 58660896 O 01a P 024 50712858 P 02i33b 18002277 P 02wm4g7rk 59673503 O 00nzy9ph8 O 0 O 01zpk P 03 47600847 O 02 P 031 19296490 O 031 P 03s6i9ycst 8418386 P 04lou7f 18743123 O 04lou7f O 03s6i9ycst...
output:
0 47818315 55545414 86628194 133356809 184308157 OK 242969053 55545414 293681911 OK OK OK 133356809 OK 0 OK 73547691 0 OK OK 0 OK 133356809 46322464 173505637 OK 353355414 OK OK OK 0 23237707 44621179 73547691 133356809 OK 44621179 142578212 151278013 187693656 223452262 237982581 OK OK 403483066 OK...
result:
ok 2366 lines
Test #51:
score: 0
Accepted
time: 5ms
memory: 3672kb
input:
305544108 3951 P 0 23499914 P 00250ap8u 26689484 P 008 17303684 P 00lkhz1g 28620014 P 00mubetaqj 17769506 P 00t3ww 12083340 P 0259ov5h93 3364624 P 02yn0epc85 10654929 O 00lkhz1g P 037y72xj 4293931 P 03l4 4145993 P 03x 19274046 O 0259ov5h93 O 03l4 P 045qab 28326786 O 00250ap8u O 045qab O 037y72xj O 0...
output:
0 23499914 50189398 67493082 96113096 113882602 125965942 129330566 OK 67493082 71787013 75933006 OK OK 139985495 OK OK OK OK 113882602 OK 67493082 113882602 OK OK 67493082 OK 23499914 139985495 113882602 OK 67493082 23499914 OK OK OK OK 113882602 117770645 OK 23499914 OK OK 74490646 OK 113882602 74...
result:
ok 3951 lines
Test #52:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
645442252 1093 P 0 58137161 P 00ti5wvg6 3651348 P 02b 4127348 P 031oe26h 60870952 P 04 55983543 P 05 63459906 O 0 P 0a05sinqvr 27078619 P 0bcaj 62294252 O 05 O 02b P 0bkj8at 50019168 O 00ti5wvg6 P 0dpj 25880249 P 0eiansy32k 8525839 O 0eiansy32k P 0f71jpvf 42207191 O 0a05sinqvr P 0ix1 22478761 O 0f71...
output:
0 58137161 61788509 65915857 126786809 182770352 OK 0 246230258 OK OK 182770352 OK 27078619 52958868 OK 308524510 OK 0 OK OK 0 OK 308524510 OK 232789520 OK 52958868 OK 182770352 0 OK OK 63368744 0 OK 0 6496408 214894737 OK 239036353 OK OK OK 369759086 OK 369759086 OK 369759086 OK 369759086 OK 529588...
result:
ok 1093 lines
Test #53:
score: 0
Accepted
time: 0ms
memory: 3772kb
input:
535592698 3484 P 0 49084939 P 004l 3943518 P 00b3rue5 8606874 P 018e1ocq 11421182 P 01corhi 42217092 P 01e35irt 53452672 O 0 P 01mojs6che 14518208 O 01e35irt P 02c8vb 7644896 O 01mojs6che P 02ipf 15201556 P 02nyr2 52383222 O 02nyr2 P 02uyu5 44901051 O 01corhi P 031bo 4880461 O 031bo O 02ipf P 033dvf...
output:
0 49084939 53028457 61635331 73056513 115273605 OK 0 OK 14518208 OK 22163104 115273605 OK 115273605 OK 37364660 OK OK 73056513 160174656 OK 73056513 210714600 OK 210714600 22163104 238652616 292129174 332068481 OK OK OK OK 160174656 OK OK OK OK 103948096 OK 136416609 OK 103948096 169292196 43082863 ...
result:
ok 3484 lines
Test #54:
score: 0
Accepted
time: 16ms
memory: 4332kb
input:
126275223 17956 P 0 9701092 P 00711sq 12592184 P 0083p24xlh 8270576 P 00ayyh2i8 2969116 P 00b6fo2n 29189 P 00eowx 12373060 P 00h 5937054 P 00jeare 5405209 O 00b6fo2n O 00h O 00ayyh2i8 P 00k901ik9 6689628 P 00ks65zyun 5316341 O 00ks65zyun P 00ovik1 510663 P 00sqd79 5355826 O 00sqd79 P 00u 9244081 P 0...
output:
0 9701092 22293276 30563852 33532968 33562157 45935217 51872271 OK OK OK 57277480 45935217 OK 30563852 45935217 OK 63967108 45935217 73211189 81035695 OK 31074515 OK OK 45935217 OK 86258839 45935217 OK OK 30563852 49656353 73211189 74923506 0 OK 86258839 OK OK 5854875 86258839 89918902 99986919 OK O...
result:
ok 17956 lines
Test #55:
score: 0
Accepted
time: 28ms
memory: 4224kb
input:
32168646 15284 P 0 2596040 P 00 76151 P 004tj 3198442 P 00b4687z 142939 P 00bdf5 2689220 P 00fdgnlag1 889550 O 0 P 00km0 1082456 O 00 P 00w9ax 521636 O 004tj P 01 1572282 O 01 P 014g 1046895 P 014l6ibcg6 788920 O 014l6ibcg6 P 016b5 2860260 O 00fdgnlag1 O 016b5 P 01apnyby 2156255 O 00b4687z P 01bkuy ...
output:
0 2596040 2672191 5870633 6013572 8702792 OK 0 OK 1082456 OK 1604092 OK 1604092 2650987 OK 2650987 OK OK 2650987 OK 8702792 OK 4807242 OK 8702792 10474461 4871046 OK OK OK 4871046 10474461 12379422 14440449 5516073 OK 17261534 19422030 4871046 OK 17261534 OK OK OK 17261534 12379422 1082456 OK 201310...
result:
ok 15284 lines
Test #56:
score: 0
Accepted
time: 7ms
memory: 4040kb
input:
108904648 11319 P 0 2517170 P 00 3288073 P 004g3c 4861758 P 00jm 7057042 P 00o83k3 7474820 P 00qi 1926809 P 00qiu 2110202 P 00qxf 6802767 P 00r5xgl7e 9767679 P 00tlw8z 6391598 P 00x 8634540 P 01bf 6078388 P 01en 9564884 P 01nvx4gi 5948027 P 01tfyeb1e 5288040 P 01wg33g 3472420 P 02 1038714 P 0236dlbw...
output:
0 2517170 5805243 10667001 17724043 25198863 27125672 29235874 36038641 45806320 52197918 60832458 66910846 76475730 82423757 87711797 91184217 92222931 NIE NIE 100752212 101431933 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE...
result:
ok 11319 lines
Test #57:
score: 0
Accepted
time: 44ms
memory: 5644kb
input:
429494016 50648 P 0 33584223 P 00 29496870 P 00092gffvs 11301095 P 000pui6h8 4229027 P 001 18787407 P 002017b 7206396 P 0026m 34900198 P 004xa 34785036 P 005 11261388 P 0064p 7798971 P 006kec1 601895 P 007610 36588168 P 008 31790928 P 009dg7474 30951005 P 00abykbj 6588616 P 00c0qg78 20537616 P 00cyv...
output:
0 33584223 63081093 74382188 78611215 97398622 104605018 139505216 174290252 185551640 193350611 193952506 230540674 262331602 293282607 299871223 320408839 356661762 360349412 392343000 398283876 398533002 NIE NIE 405261242 NIE NIE NIE 425999946 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 50648 lines
Test #58:
score: 0
Accepted
time: 148ms
memory: 9452kb
input:
693612861 148029 P 0 4878851 P 00 20598292 P 000 50493159 P 000044x 28784493 P 000spm 21091750 P 000t2uq 46850431 P 001 56013894 P 001a4 18459005 P 001f77 1451169 P 002gasx41x 38420990 P 002uvfub 7437735 P 003 15574060 P 004b2g 51291354 P 004o4x04o 32470346 P 005 60402002 P 0054sf8jp 7506407 P 006 2...
output:
0 4878851 25477143 75970302 104754795 125846545 172696976 228710870 247169875 248621044 287042034 294479769 310053829 361345183 393815529 454217531 461723938 490252173 506850429 541529313 597800009 NIE NIE 638665690 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 682952885 NIE NIE NIE 685619270 ...
result:
ok 148029 lines
Test #59:
score: 0
Accepted
time: 220ms
memory: 14048kb
input:
24403235 261786 P 0 362220 P 00 664071 P 000 699669 P 0006prx6 2182108 P 0009lppau7 1146155 P 000e76y 1722531 P 000kows76f 441764 P 000ob 651993 P 000q54 870169 P 000songft 1406412 P 000tj 1485789 P 000zec3i0f 1172839 P 001 1509751 P 0016kx 2326892 P 001cdw9zbz 215378 P 001i6pg5 484007 P 001n0md 216...
output:
0 362220 1026291 1725960 3908068 5054223 6776754 7218518 7870511 8740680 10147092 11632881 12805720 14315471 16642363 16857741 17341748 19510304 19645737 21232944 22883764 NIE NIE NIE NIE NIE NIE NIE NIE 24273658 24292733 NIE NIE NIE NIE NIE NIE NIE 24347476 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 261786 lines
Test #60:
score: 0
Accepted
time: 287ms
memory: 14600kb
input:
436839024 278362 P 0 42750998 P 00 33031470 P 0000k3zx8 26085447 P 0004l 37275791 P 000lq 19930845 P 000o 33968599 P 0018hh 12264279 P 00192df82 1093240 P 001b3yus 39574887 P 001p1c 27769329 P 001qoe98s0 38508004 P 002lit80b 27128671 P 002q 16403383 P 00335 4865707 P 00377qei 39920575 P 003agl 28935...
output:
0 42750998 75782468 101867915 139143706 159074551 193043150 205307429 206400669 245975556 273744885 312252889 339381560 355784943 360650650 400571225 NIE NIE 429507220 432175902 NIE NIE NIE NIE NIE NIE NIE NIE 433291444 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 278362 lines
Test #61:
score: 0
Accepted
time: 408ms
memory: 21480kb
input:
308487485 456744 P 0 12062742 P 00 21162435 P 000 26114288 P 0005a9tg 4066122 P 000an 2108082 P 000fo5l 5812615 P 000kat26 10836322 P 000md4x 6012993 P 000pc30bb 548306 P 000tap28j8 28336483 P 000ujc 7738799 P 000w0ect7x 7432116 P 001 5827493 P 0010cy1 28178846 P 0012sxce 3191485 P 0014py4h 24709532...
output:
0 12062742 33225177 59339465 63405587 65513669 71326284 82162606 88175599 88723905 117060388 124799187 132231303 138058796 166237642 169429127 194138659 196696139 216100627 244563644 246607794 254305997 276443792 303889187 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE N...
result:
ok 456744 lines
Test #62:
score: 0
Accepted
time: 364ms
memory: 16604kb
input:
608242873 331359 P 0 36930103 P 00 39365173 P 000 20503717 P 00068od 516744 P 000bn88 60119901 P 000cqt46 10021122 P 000dp 32093268 P 000gp1l 8074469 P 000ovodv 40860287 P 000y2o 38972636 P 001 40649696 P 00105 49407112 P 001cqlci6q 12427932 P 001g6b 26475771 P 0023mc1ods 42223466 P 002e 31939485 P ...
output:
0 36930103 76295276 96798993 97315737 157435638 167456760 199550028 207624497 248484784 287457420 328107116 377514228 389942160 416417931 458641397 490580882 549319460 565789171 NIE 589337803 NIE NIE NIE NIE NIE NIE NIE NIE NIE 601090709 NIE 604990450 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE ...
result:
ok 331359 lines
Test #63:
score: 0
Accepted
time: 1336ms
memory: 42848kb
input:
427473693 1000000 P 0 37689173 P 00 31411788 P 000 41167627 P 0000snl1 17082628 P 0002wnm 11744842 P 00033c 17925314 P 0005u8d 29188230 P 000cwsxz2 39298432 O 00 P 000d88sn 2522125 P 000fk 40322772 O 0005u8d O 0000snl1 O 00033c P 000fqbz 1655842 O 000fqbz O 0002wnm P 000im 20893143 O 000im P 000ofp5...
output:
0 37689173 69100961 110268588 127351216 139096058 157021372 186209602 OK 37689173 225508034 OK OK OK 110268588 OK OK 40211298 OK 40211298 OK 56183609 OK 110268588 OK 37689173 43299422 129174877 265830806 OK 305888923 OK 305888923 154820247 OK OK 0 305888923 OK OK OK OK OK 40735195 177113625 OK OK 40...
result:
ok 1000000 lines
Test #64:
score: 0
Accepted
time: 1043ms
memory: 42700kb
input:
488919001 1000000 P 0 273115653 P 00 459574874 P 000 35843527 P 0002m1nua8 403426783 P 0007cmy 20222835 P 000fmfsdih 329644486 O 00 P 000il3q 279791937 P 000iph 178773867 O 000 P 000lese2 163594147 P 000m 189082798 P 000nqj 95197746 P 000o03 248412846 O 0002m1nua8 P 000o4ez 340796620 O 0007cmy O 000...
output:
0 NIE 273115653 NIE 308959180 NIE BRAK NIE NIE OK NIE NIE 329182015 NIE BRAK NIE OK BRAK NIE BRAK OK NIE BRAK 0 BRAK BRAK OK NIE NIE NIE NIE BRAK BRAK 274503882 NIE NIE OK BRAK NIE NIE BRAK BRAK BRAK NIE BRAK BRAK BRAK NIE BRAK NIE NIE 274503882 BRAK OK 274503882 NIE NIE BRAK OK BRAK BRAK NIE BRAK N...
result:
ok 1000000 lines
Test #65:
score: 0
Accepted
time: 936ms
memory: 42708kb
input:
835810425 1000000 P 0 565847112 P 00 435683058 P 000 325272758 P 0001 439017202 P 0001zgt 25677930 P 0006eno 602264211 P 0007 471780470 P 0007j7imr6 602705603 P 000d1dnmff 727042193 P 000dmw8b50 794287509 P 000e 742581615 P 000e11 686570254 P 000e2rr 625964513 P 000fuap2 641049482 P 000ha4pipz 56760...
output:
0 NIE NIE NIE 565847112 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE 591525042 NIE NIE NIE NIE 727407597 NIE BRAK BRAK NIE OK NIE BRAK NIE 797778968 591525042 NIE NIE BRAK NIE NIE BRAK NIE NIE BRAK 693100396 NIE OK 800094941 BRAK NIE NIE NIE BRAK BRAK NIE 701389313 OK NIE BRAK BRAK NIE BRAK NIE NIE NIE B...
result:
ok 1000000 lines
Test #66:
score: 0
Accepted
time: 1495ms
memory: 42596kb
input:
43262975 1000000 P 0 113137 P 00 91947 P 000 774029 P 0000 562548 P 0000xr 635144 P 00013u 347095 P 000ay7c 236530 P 000ep 426040 P 000f7o63 831792 P 000n8yq 641116 P 000o08cnvd 764372 P 000ovyl261 492289 P 000p 319353 P 000px 461388 P 000rr0b7j7 90428 P 000s 657135 P 000vo9wytf 248404 P 000zv1ct 18...
output:
0 113137 205084 979113 1541661 2176805 2523900 2760430 3186470 4018262 4659378 5423750 5916039 6235392 6696780 6787208 7444343 7692747 7873768 8167741 8508424 8951778 9040243 9303783 10042301 10196933 10678970 11490558 12311189 12334836 13054586 13358087 13911499 14170658 14395006 14801094 15101788 ...
result:
ok 1000000 lines