QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#68196 | #5235. Podwyżki [B] | QwQcOrZ | 0 | 54ms | 9400kb | C++14 | 1.6kb | 2022-12-15 10:01:37 | 2022-12-15 10:01:40 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=5e5+5;
bool mark[N];
int n,k,a[N],mn[N],mx[N];
bool check() {
for (int i=1;i<n;i++) {
if (a[i]>a[i+1]) {
return 0;
}
}
return 1;
}
signed main() {
ios::sync_with_stdio(false),cin.tie(0);
cout.precision(10),cout.setf(ios::fixed);
cin>>n>>k;
for (int i=1;i<=n;i++) {
cin>>a[i];
}
if (check()) {
cout<<"NIE\n";
return 0;
}
if (k>=4) {
int m=k-1;
for (int i=1;i<n;i++) {
if (a[i]>a[i+1]) {
mark[i-1]=mark[i]=mark[i+1]=1;
m--,m-=i+1<n,m-=i-1>=0;
break;
}
}
for (int i=1;i<n;i++) {
if (m&&!mark[i]) {
mark[i]=1;
m--;
}
}
cout<<"TAK\n";
for (int i=1;i<n;i++) {
if (mark[i]) {
cout<<i<<" ";
}
}
} else {
mn[0]=1e9+7,mx[n+1]=0;
for (int i=1;i<=n;i++) {
mn[i]=min(mn[i-1],a[i]);
}
for (int i=n;i>=1;i--) {
mx[i]=max(mx[i+1],a[i]);
}
if (k==2) {
for (int i=1;i<n;i++) {
if (mn[i]>mx[i+1]) {
cout<<"TAK\n"<<i<<"\n";
return 0;
}
}
cout<<"NIE\n";
} else {
if (a[1]!=mn[n]) {
for (int i=1;i<=n;i++) {
if (a[i]==mn[n]) {
cout<<"TAK\n"<<i-1<<' '<<i<<"\n";
return 0;
}
}
}
if (a[n]!=mx[1]) {
for (int i=1;i<=n;i++) {
if (a[i]==mx[1]) {
cout<<"TAK\n"<<i-1<<' '<<i<<"\n";
return 0;
}
}
}
for (int i=2;i<n;i++) {
if (a[i]==mn[n]||a[i]==mx[1]) {
cout<<"TAK\n"<<i-1<<' '<<i<<"\n";
return 0;
}
}
cout<<"NIE\n";
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 1
Accepted
time: 2ms
memory: 3544kb
input:
20 3 500000006 500000017 500000029 500000035 500000043 500000059 500000193 500000072 500000086 500000093 500000102 500000113 500000128 500000138 500000148 500000156 500000161 500000176 500000185 500000193
output:
TAK 6 7
result:
ok good solution
Test #2:
score: 0
Accepted
time: 2ms
memory: 3268kb
input:
19 3 500000005 500000018 500000026 500000034 500000043 500000053 500000065 500000076 500000087 500000099 500000108 500000117 500000005 500000139 500000149 500000151 500000161 500000179 500000187
output:
TAK 12 13
result:
ok good solution
Test #3:
score: 0
Accepted
time: 2ms
memory: 3324kb
input:
20 4 999999991 999999992 999999991 999999995 999999995 999999990 999999998 999999990 999999994 1000000000 999999994 999999994 999999995 999999993 999999990 999999991 999999991 999999994 999999994 999999991
output:
TAK 1 2 3
result:
ok good solution
Test #4:
score: -1
Wrong Answer
time: 2ms
memory: 3424kb
input:
20 5 2 1 2 3 1 3 4 1 1 3 2 3 1 3 3 1 1 1 2 4
output:
TAK 1 2 3
result:
wrong output format Unexpected end of file - int32 expected
Subtask #2:
score: 0
Wrong Answer
Test #15:
score: 1
Accepted
time: 1ms
memory: 3444kb
input:
513 3 500000008 500000018 500000028 500000031 500000049 500000057 500000068 500000073 500000088 500000096 500000109 500000117 500000121 500000135 500000149 500000155 500000162 500000175 500000183 500000193 500000206 500000215 500000221 500000239 500000244 500000256 500000265 500000279 500000289 5000...
output:
TAK 230 231
result:
ok good solution
Test #16:
score: 0
Accepted
time: 2ms
memory: 3512kb
input:
512 3 500000004 500000013 500000025 500000039 500000043 500000054 500000068 500000078 500000089 500000092 500000101 500000111 500000125 500000136 500000141 500000153 500000162 500000179 500000185 500000199 500000208 500000218 500000226 500000239 500000246 500000253 500000268 500000278 500000282 5000...
output:
TAK 428 429
result:
ok good solution
Test #17:
score: 0
Accepted
time: 2ms
memory: 3324kb
input:
500 3 3 2 2 1 2 2 3 3 2 2 3 3 1 2 3 1 1 1 1 3 2 2 1 3 2 2 2 3 3 2 1 1 3 1 3 1 1 2 3 2 2 2 2 3 1 1 3 3 2 2 3 3 1 2 3 3 3 3 3 2 2 2 2 2 2 1 1 2 2 1 1 2 1 1 3 1 1 2 2 3 3 3 1 1 1 1 1 1 1 3 2 2 2 1 3 2 2 2 2 1 2 3 1 2 1 2 1 1 2 3 1 3 1 2 2 3 3 1 3 1 3 3 3 3 1 2 3 1 1 3 3 1 1 3 3 2 3 3 3 3 3 1 1 2 2 2 3 ...
output:
TAK 3 4
result:
ok good solution
Test #18:
score: -1
Wrong Answer
time: 2ms
memory: 3336kb
input:
500 4 999999995 999999992 999999993 999999991 1000000000 999999999 999999997 999999999 999999994 999999994 999999998 999999993 999999999 999999999 999999995 999999994 999999996 999999995 999999990 999999997 1000000000 999999999 999999995 999999995 999999991 999999992 999999998 1000000000 1000000000 ...
output:
TAK 1 2
result:
wrong output format Unexpected end of file - int32 expected
Subtask #3:
score: 0
Wrong Answer
Test #26:
score: 1
Accepted
time: 2ms
memory: 3456kb
input:
1025 3 5 15 24 38 48 55 66 72 90 100 105 120 126 132 149 158 164 179 187 192 206 217 223 235 245 258 266 276 286 297 308 317 322 339 349 354 365 379 384 398 410 414 423 433 442 455 469 480 484 495 506 520 526 533 546 556 565 580 587 599 607 617 628 634 646 658 667 675 686 700 709 714 729 740 744 760...
output:
TAK 312 313
result:
ok good solution
Test #27:
score: 0
Accepted
time: 3ms
memory: 3360kb
input:
2000 3 500000003 500000018 500000029 500000036 500000047 500000057 500000068 500000074 500000086 500000099 500000101 500000114 500000124 500000138 500000149 500000151 500000163 500000171 500000188 500000197 500000205 500000212 500000226 500000239 500000248 500000256 500000263 500000274 500000282 500...
output:
TAK 1472 1473
result:
ok good solution
Test #28:
score: 0
Accepted
time: 2ms
memory: 3532kb
input:
2000 3 2 3 2 1 2 1 2 3 2 1 1 3 2 2 3 2 1 2 1 3 3 2 3 1 3 2 3 1 1 3 1 3 3 1 3 1 3 1 2 1 1 2 1 2 3 3 1 2 3 3 2 3 3 2 3 3 1 2 2 3 3 3 3 3 3 1 2 2 2 3 3 2 1 1 1 1 3 3 1 1 1 2 2 2 2 1 1 1 1 3 2 1 3 3 2 3 2 2 3 1 3 2 3 2 2 2 3 3 3 1 2 3 3 2 3 1 2 1 2 3 2 2 1 3 2 1 1 1 1 3 2 2 3 1 3 2 1 2 2 1 1 1 1 3 1 2 2...
output:
TAK 3 4
result:
ok good solution
Test #29:
score: -1
Wrong Answer
time: 2ms
memory: 3420kb
input:
2000 4 999999993 999999991 999999995 999999996 1000000000 999999999 999999994 999999992 999999996 999999992 999999990 999999992 999999998 999999992 999999994 999999992 999999997 999999994 999999996 999999998 999999996 999999994 999999994 999999999 999999996 999999993 999999990 999999993 999999993 99...
output:
TAK 1 2
result:
wrong output format Unexpected end of file - int32 expected
Subtask #4:
score: 0
Wrong Answer
Test #38:
score: 1
Accepted
time: 2ms
memory: 3348kb
input:
1024 3 9 15 30 37 45 58 69 78 84 97 108 112 122 140 148 154 166 176 185 195 208 213 227 235 243 252 264 274 284 299 310 317 325 338 348 359 364 375 384 400 410 419 425 439 448 459 468 477 487 498 504 516 525 538 549 558 563 574 583 594 602 613 622 634 648 658 668 674 686 697 702 713 728 738 742 754 ...
output:
TAK 858 859
result:
ok good solution
Test #39:
score: 0
Accepted
time: 2ms
memory: 3344kb
input:
2000 3 500000001 500000016 500000026 500000036 500000044 500000052 500000064 500000076 500000083 500000093 500000104 500000119 500000122 500000135 500000149 500000156 500000169 500000176 500000182 500000199 500000207 500000214 500000229 500000235 500000242 500000254 500000263 500000278 500000282 500...
output:
TAK 1452 1453
result:
ok good solution
Test #40:
score: 0
Accepted
time: 2ms
memory: 3428kb
input:
1023 3 3 1 3 1 1 2 3 3 3 3 3 2 3 1 2 2 2 1 3 1 1 2 1 1 3 3 3 3 2 2 1 2 1 1 1 3 1 2 1 2 2 3 2 3 3 2 2 2 1 3 2 1 2 2 2 3 2 1 2 3 1 1 1 1 1 3 1 2 3 2 3 1 3 1 3 3 3 2 2 1 3 1 2 3 1 2 2 1 2 3 1 3 2 1 2 2 2 3 2 3 1 2 1 1 3 2 1 2 1 3 3 2 1 3 1 2 2 2 1 3 3 2 2 3 3 2 3 3 1 1 2 1 1 2 3 3 1 2 3 1 2 3 3 3 3 1 1...
output:
TAK 1 2
result:
ok good solution
Test #41:
score: 0
Accepted
time: 2ms
memory: 3300kb
input:
2000 2 569858831 450911919 863304159 885312393 109683305 110364551 266840379 860043848 397780790 465717343 101092307 613324906 575484525 22329315 831790930 758295276 134402417 51539346 68434131 25519620 799961117 102110878 231917973 782986177 244847850 91945531 897107420 157212537 50003910 683767290...
output:
NIE
result:
ok no solution
Test #42:
score: 0
Accepted
time: 2ms
memory: 3340kb
input:
2000 4 999999995 999999999 1000000000 999999998 999999992 999999992 999999996 999999995 999999999 999999994 999999992 999999991 999999996 999999996 999999992 999999991 999999991 999999996 999999997 999999997 999999998 999999997 999999998 999999997 999999994 999999998 999999999 999999991 999999999 10...
output:
TAK 2 3 4
result:
ok good solution
Test #43:
score: 0
Accepted
time: 2ms
memory: 3324kb
input:
1024 1004 506 533 1730 122 238 1681 1213 1748 782 480 562 1501 1855 595 26 653 526 972 241 1257 2006 521 857 232 637 191 1666 1235 861 1143 115 1221 1907 1574 466 1840 815 837 98 1767 841 1223 1613 795 802 1512 959 1241 1473 213 705 114 314 1918 1285 1448 851 1126 386 689 1842 195 19 809 1759 456 19...
output:
TAK 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...
result:
ok good solution
Test #44:
score: 0
Accepted
time: 2ms
memory: 3332kb
input:
2000 4 500000009 500000018 500000023 500000038 500000044 500000059 500000062 500000077 500000085 500000099 500000105 500000118 500000123 500000134 500000149 500000153 500000166 500000177 500000189 500000193 500000204 500000215 500000224 500000238 500000249 500000255 500000267 500000277 500000284 500...
output:
NIE
result:
ok no solution
Test #45:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
2000 4 1000001 1000018 1000029 1000039 1000044 1000052 1000068 1000075 1000082 1000096 1000109 1000111 1000125 1000132 1000141 1000157 1000166 1000179 1000181 1000194 1000208 1000212 1000228 1000238 1000249 1000259 1000267 1000276 1000284 1000296 1000307 1000316 1000324 1000331 1000346 1000354 10003...
output:
TAK 1000 1001 1002
result:
ok good solution
Test #46:
score: 0
Accepted
time: 2ms
memory: 3340kb
input:
2000 4 1000005 1000019 1000026 1000038 1000044 1000059 1000062 1000078 1000088 1000096 1000107 1000119 1000124 1000133 1000142 1000152 1000168 1000172 1000183 1000191 1000206 1000215 1000224 1000236 1000244 1000251 1000261 1000278 1000284 1000294 1000309 1000316 1000324 1000334 1000349 1000353 10003...
output:
TAK 1 1998 1999
result:
ok good solution
Test #47:
score: 0
Accepted
time: 2ms
memory: 3304kb
input:
2000 3 1 36811680 190639701 570987233 640071083 135413909 365577186 107617576 961334923 28070371 428883654 149627314 755126830 974361292 967900129 907151252 252929431 734653269 371975446 494403481 552011663 882731395 993845839 189055128 514361182 776665591 262734314 840150227 897391882 539139677 633...
output:
NIE
result:
ok no solution
Test #48:
score: -1
Wrong Answer
time: 2ms
memory: 3464kb
input:
2000 2 118 268 306 172 224 311 387 309 128 223 340 280 357 311 241 314 232 394 154 296 232 235 327 394 273 221 229 290 304 244 284 127 218 341 187 354 318 305 290 192 166 316 274 182 195 148 289 214 285 256 269 307 385 387 282 375 163 270 135 372 324 291 177 243 347 208 150 303 396 305 164 303 187 3...
output:
NIE
result:
wrong answer Jury's Answer: TAK; Your Answer: NIE
Subtask #5:
score: 0
Wrong Answer
Test #50:
score: 1
Accepted
time: 26ms
memory: 9272kb
input:
500000 2 96733 385679 36496 58364 157924 262087 114368 369679 399487 243135 300007 400425 143873 238383 376606 221831 362277 5424 143882 7322 83891 13321 464051 2125 317534 223350 355391 142109 446781 2753 377049 387945 57663 418272 16684 482728 300347 313882 41088 40295 38933 317354 168907 234092 2...
output:
NIE
result:
ok no solution
Test #51:
score: 0
Accepted
time: 50ms
memory: 9288kb
input:
500000 2 117389272 687154217 170919241 601221880 776757285 253352169 897265377 801718066 23223989 393553983 389363071 354656166 242297781 51907467 932025936 241442608 472378284 605075711 87145073 765793299 908330721 367947491 639266180 417184951 409818275 265875703 533223529 384404244 271797058 7634...
output:
NIE
result:
ok no solution
Test #52:
score: -1
Wrong Answer
time: 23ms
memory: 9184kb
input:
500000 2 1 3 2 1 2 2 2 1 3 1 2 2 1 3 3 1 3 2 3 1 1 1 2 1 1 1 1 3 3 2 1 3 1 2 3 3 1 2 3 3 3 3 3 3 1 3 3 3 1 1 2 2 2 3 1 3 2 2 1 3 1 1 2 2 2 1 3 1 1 3 3 1 2 1 1 2 1 1 2 3 3 3 2 2 1 2 1 2 1 1 2 2 3 3 2 3 3 3 3 1 1 1 2 1 3 3 2 1 1 1 2 3 2 2 3 2 2 3 2 3 3 2 1 3 2 3 3 3 3 2 1 2 1 3 1 3 3 3 1 1 1 3 2 3 3 3...
output:
NIE
result:
wrong answer Jury's Answer: TAK; Your Answer: NIE
Subtask #6:
score: 0
Wrong Answer
Test #58:
score: 1
Accepted
time: 45ms
memory: 9188kb
input:
500000 3 500000003 500000017 500000027 500000036 500000043 500000054 500000066 500000078 500000082 500000094 500000104 500000114 500000123 500000133 500000147 500000158 500000169 500000178 500000181 500000191 500000203 500000212 500000221 500000235 500000247 500000254 500000266 500000271 500000283 5...
output:
TAK 5105 5106
result:
ok good solution
Test #59:
score: 0
Accepted
time: 41ms
memory: 9168kb
input:
500000 3 8 18 25 36 46 52 64 73 86 95 102 117 122 135 149 154 170 173 184 198 202 219 227 235 243 255 265 274 284 298 302 314 323 333 342 356 362 379 383 400 406 415 422 433 450 460 462 478 482 494 509 518 523 532 549 553 570 572 582 592 604 615 625 633 643 659 666 673 683 696 704 720 726 737 743 75...
output:
TAK 227755 227756
result:
ok good solution
Test #60:
score: 0
Accepted
time: 31ms
memory: 9272kb
input:
500000 3 76142 184713 162332 231317 253409 149983 403631 443598 294194 383351 452080 198956 441905 449265 391601 353022 432725 69532 324491 434497 237660 162995 192517 457126 420577 158438 5850 130789 3683 11345 204100 323809 484964 332197 218478 95950 356909 352741 157449 279980 57783 290708 278063...
output:
TAK 117086 117087
result:
ok good solution
Test #61:
score: 0
Accepted
time: 51ms
memory: 9396kb
input:
500000 2 514352328 419469602 69028724 932894833 551820066 136805601 384554640 230759153 376618696 893194199 618515144 942421993 275644998 788618349 739540931 695090150 804883196 690139819 732309331 101220474 278500843 300129869 625978295 190672784 425421318 300777959 242923171 435876571 994370313 14...
output:
NIE
result:
ok no solution
Test #62:
score: 0
Accepted
time: 17ms
memory: 6392kb
input:
262144 3 1 3 1 2 3 1 2 2 2 1 3 2 1 2 3 2 3 3 2 1 2 3 3 3 2 3 3 2 1 2 2 3 3 1 1 3 1 2 3 1 2 2 1 1 3 1 1 1 1 1 1 2 3 3 1 1 3 2 2 1 2 1 2 1 2 3 2 3 2 3 2 3 1 1 3 1 2 1 3 2 2 3 1 2 2 3 3 1 2 2 1 1 2 2 1 3 3 3 2 1 3 1 3 1 1 1 3 3 2 3 3 1 3 2 1 3 1 1 3 1 2 2 3 3 2 2 3 1 3 1 2 3 1 2 2 2 2 2 2 2 3 1 3 1 2 1...
output:
TAK 1 2
result:
ok good solution
Test #63:
score: 0
Accepted
time: 23ms
memory: 9292kb
input:
500000 3 1 2 3 2 3 2 2 2 3 3 3 2 3 3 2 3 2 2 2 3 3 2 3 2 2 2 3 2 2 3 2 2 3 3 2 3 2 3 3 2 3 2 3 3 2 3 3 2 3 2 3 2 3 2 2 3 2 3 2 2 3 3 3 2 2 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 3 3 2 2 3 3 2 3 3 2 3 2 3 3 2 2 2 2 3 2 2 2 2 3 2 2 3 2 2 3 3 3 2 3 2 3 3 3 2 3 3 2 3 3 3 2 3 3 2 2 3 2 3 2 2 3 2 2 3 2 3 2...
output:
NIE
result:
ok no solution
Test #64:
score: 0
Accepted
time: 52ms
memory: 9400kb
input:
500000 3 1 198265967 513475945 700860821 751064997 294702285 7206959 177826037 44853414 360642971 532149946 596346948 363717178 814225874 634480125 455271233 6324984 174750277 982876662 335110143 390117660 934734740 602513555 997456115 436668936 963105153 964055824 87395066 424621837 393654281 96129...
output:
NIE
result:
ok no solution
Test #65:
score: -1
Wrong Answer
time: 41ms
memory: 9268kb
input:
500000 2 241 266 250 256 290 244 315 393 294 294 306 324 318 296 279 306 303 354 400 317 365 251 371 318 300 338 252 252 379 382 395 366 299 352 334 346 293 337 341 288 245 357 395 362 332 372 263 330 309 363 316 253 375 304 343 350 246 360 269 260 341 334 380 346 369 396 281 335 267 311 324 363 248...
output:
NIE
result:
wrong answer Jury's Answer: TAK; Your Answer: NIE
Subtask #7:
score: 0
Wrong Answer
Test #67:
score: 1
Accepted
time: 21ms
memory: 5784kb
input:
200000 3 2 20 22 38 44 53 70 76 82 100 102 120 128 137 148 159 168 178 186 199 203 218 222 232 242 255 270 275 287 293 308 318 329 340 345 356 368 377 390 394 407 415 428 436 442 452 463 478 485 493 510 515 524 539 549 555 565 573 588 595 608 618 622 640 642 653 662 673 689 700 710 713 727 735 748 7...
output:
TAK 147546 147547
result:
ok good solution
Test #68:
score: 0
Accepted
time: 17ms
memory: 5764kb
input:
200000 3 4 19 25 36 47 57 65 76 89 97 104 112 129 137 148 152 169 176 183 196 208 217 224 239 245 259 270 276 287 294 303 318 326 335 346 359 368 373 390 398 407 420 424 440 447 460 470 474 484 500 504 515 526 536 544 559 563 573 589 594 602 612 629 637 642 655 663 680 689 693 708 713 725 737 750 75...
output:
TAK 1382 1383
result:
ok good solution
Test #69:
score: 0
Accepted
time: 4ms
memory: 5760kb
input:
200000 3 2 1 1 1 2 3 2 1 2 3 1 2 2 2 1 1 1 3 2 1 3 3 3 1 2 3 3 3 3 3 3 2 3 3 2 2 3 1 2 1 2 1 1 1 1 1 2 3 1 2 1 2 3 3 3 2 2 1 2 3 3 2 3 3 3 2 2 3 2 2 1 3 1 1 1 1 3 2 2 2 2 2 2 3 3 3 3 3 1 2 1 3 1 3 3 1 3 2 3 3 1 3 2 3 2 2 2 3 3 3 1 3 3 1 3 1 2 1 2 3 2 2 1 3 3 3 2 1 3 1 1 1 1 3 1 2 3 2 1 1 2 2 2 1 1 1...
output:
TAK 1 2
result:
ok good solution
Test #70:
score: 0
Accepted
time: 18ms
memory: 4048kb
input:
200000 4 999999990 1000000000 999999990 999999995 999999991 999999991 999999997 999999996 999999994 999999995 999999996 999999995 999999990 999999998 999999991 999999990 999999993 999999990 999999996 1000000000 999999994 999999996 999999997 999999996 999999995 999999998 999999994 999999991 999999999...
output:
TAK 1 2 3
result:
ok good solution
Test #71:
score: -1
Wrong Answer
time: 26ms
memory: 4308kb
input:
200000 200000 248273 149424 149980 240028 231110 142867 376104 338951 358805 41152 255859 389241 53020 343686 227043 66860 287453 124695 272549 308558 273391 117560 106055 130571 172810 146327 358771 351410 140913 157028 80917 166774 127883 44099 336183 252104 292628 113255 269541 101190 354482 3597...
output:
TAK 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...
result:
wrong output format Unexpected end of file - int32 expected
Subtask #8:
score: 0
Wrong Answer
Test #80:
score: 1
Accepted
time: 16ms
memory: 6512kb
input:
262145 3 6 13 24 38 49 58 62 78 88 96 102 117 130 139 147 152 169 179 184 199 206 217 222 237 245 260 264 279 286 296 303 312 330 336 345 357 362 379 390 399 405 415 425 432 450 453 467 480 488 497 505 520 523 535 548 559 565 576 585 600 608 617 630 636 648 652 662 677 684 700 706 715 726 738 747 75...
output:
TAK 42092 42093
result:
ok good solution
Test #81:
score: 0
Accepted
time: 25ms
memory: 6804kb
input:
299999 3 5 19 27 40 44 52 70 75 85 99 108 112 129 140 148 156 166 172 188 196 204 214 227 235 249 257 267 272 288 294 305 312 326 339 344 359 370 374 390 397 405 415 426 436 450 456 466 479 483 498 509 515 524 535 546 555 568 574 582 596 610 620 623 636 645 653 664 673 683 694 702 712 727 738 743 76...
output:
TAK 232708 232709
result:
ok good solution
Test #82:
score: 0
Accepted
time: 18ms
memory: 6852kb
input:
300000 3 2 1 3 2 2 1 1 2 1 3 2 3 2 1 1 2 3 1 2 2 2 3 1 3 3 1 3 2 2 3 2 3 1 2 3 2 2 2 1 2 3 3 2 2 1 3 1 3 2 3 2 3 1 2 3 1 3 3 3 1 2 2 3 2 3 2 1 2 2 1 3 3 3 2 3 3 3 2 1 3 3 2 2 3 2 2 2 1 2 3 2 2 3 3 1 1 3 2 1 3 3 2 1 1 3 3 1 2 2 2 2 2 1 1 3 1 1 3 1 1 1 2 3 3 3 3 3 2 2 1 2 2 1 1 3 3 1 2 3 3 3 2 2 2 2 3...
output:
TAK 1 2
result:
ok good solution
Test #83:
score: -1
Wrong Answer
time: 26ms
memory: 4480kb
input:
300000 4 999999994 999999992 999999992 999999998 999999995 999999999 999999996 1000000000 1000000000 999999999 999999990 999999997 999999994 999999994 999999995 999999997 999999997 999999998 999999995 999999996 999999997 999999997 999999996 999999998 999999998 999999990 999999990 999999993 999999997...
output:
TAK 1 2
result:
wrong output format Unexpected end of file - int32 expected
Subtask #9:
score: 0
Wrong Answer
Test #92:
score: 1
Accepted
time: 19ms
memory: 6620kb
input:
262146 3 5 19 27 40 44 52 70 75 85 99 108 112 129 140 148 156 166 172 188 196 204 214 227 235 249 257 267 272 288 294 305 312 326 339 344 359 370 374 390 397 405 415 426 436 450 456 466 479 483 498 509 515 524 535 546 555 568 574 582 596 610 620 623 636 645 653 664 673 683 694 702 712 727 738 743 76...
output:
TAK 38377 38378
result:
ok good solution
Test #93:
score: 0
Accepted
time: 31ms
memory: 8024kb
input:
400000 3 6 13 24 38 49 58 62 78 88 96 102 117 130 139 147 152 169 179 184 199 206 217 222 237 245 260 264 279 286 296 303 312 330 336 345 357 362 379 390 399 405 415 425 432 450 453 467 480 488 497 505 520 523 535 548 559 565 576 585 600 608 617 630 636 648 652 662 677 684 700 706 715 726 738 747 75...
output:
TAK 314714 314715
result:
ok good solution
Test #94:
score: 0
Accepted
time: 11ms
memory: 8128kb
input:
400000 3 3 1 3 2 2 3 1 3 3 2 2 1 2 3 2 2 1 3 1 1 2 2 2 2 2 2 3 1 2 3 2 3 2 3 2 1 1 3 1 1 1 2 1 3 3 1 2 1 1 1 1 3 1 2 2 2 3 3 2 2 1 1 3 1 3 1 3 2 2 2 3 3 1 2 2 1 2 3 3 2 2 1 1 3 3 3 3 2 1 1 3 3 3 2 3 1 3 2 2 3 2 2 3 1 3 1 3 2 2 1 2 3 3 2 3 3 3 3 2 2 3 2 1 1 2 1 1 1 3 3 2 3 2 3 1 1 3 3 3 1 1 1 3 3 1 1...
output:
TAK 1 2
result:
ok good solution
Test #95:
score: -1
Wrong Answer
time: 47ms
memory: 4996kb
input:
400000 4 999999994 999999992 999999997 999999993 999999998 999999994 999999996 999999995 999999995 999999996 999999994 999999990 999999993 999999990 999999990 999999992 999999996 999999996 999999995 999999994 1000000000 999999991 1000000000 999999995 999999992 999999995 999999996 999999995 999999997...
output:
TAK 1 2
result:
wrong output format Unexpected end of file - int32 expected
Subtask #10:
score: 0
Wrong Answer
Test #106:
score: 1
Accepted
time: 49ms
memory: 9400kb
input:
499999 3 6 13 24 38 49 58 62 78 88 96 102 117 130 139 147 152 169 179 184 199 206 217 222 237 245 260 264 279 286 296 303 312 330 336 345 357 362 379 390 399 405 415 425 432 450 453 467 480 488 497 505 520 523 535 548 559 565 576 585 600 608 617 630 636 648 652 662 677 684 700 706 715 726 738 747 75...
output:
TAK 341906 341907
result:
ok good solution
Test #107:
score: 0
Accepted
time: 51ms
memory: 9160kb
input:
500000 3 413423474 972924559 25444661 17117394 179085016 194118196 842074515 178130266 708851309 377794792 217671941 269350315 861734575 291683801 44740519 938114455 250385366 561222511 893930676 659766616 684694210 430331238 859267083 76748856 769147012 544643715 150954917 323496453 808859154 97589...
output:
TAK 394299 394300
result:
ok good solution
Test #108:
score: 0
Accepted
time: 25ms
memory: 9276kb
input:
500000 3 1 1 2 3 2 2 2 2 1 1 3 1 2 2 3 3 2 2 1 1 3 3 1 3 3 1 3 3 1 2 1 1 2 1 1 1 3 3 3 2 3 3 2 3 2 3 1 3 2 3 3 3 2 3 3 3 3 2 3 3 3 1 3 3 2 3 1 1 2 1 2 1 2 3 1 1 3 3 3 3 3 1 2 3 2 2 3 3 2 3 3 2 3 1 1 1 3 2 1 3 2 1 1 1 1 3 1 1 3 3 3 2 1 2 2 3 3 2 1 2 3 1 2 1 3 2 3 2 3 1 1 1 2 2 3 3 2 2 2 3 2 3 3 3 2 3...
output:
TAK 3 4
result:
ok good solution
Test #109:
score: -1
Wrong Answer
time: 54ms
memory: 5264kb
input:
500000 4 999999995 999999992 999999995 999999999 999999992 999999995 999999996 999999997 999999990 999999993 999999990 999999994 999999996 999999997 999999997 999999991 999999993 999999993 999999994 999999990 999999993 999999992 999999990 999999999 999999997 999999998 1000000000 999999998 999999996 ...
output:
TAK 1 2
result:
wrong output format Unexpected end of file - int32 expected