QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#68185 | #5235. Podwyżki [B] | DaBenZhongXiaSongKuaiDi | 0 | 67ms | 11144kb | C++14 | 1.3kb | 2022-12-15 08:33:09 | 2022-12-15 08:33:12 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int a[500005];
int vis[500005],mn[500005],mx[500005];
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int n,k;
cin >> n >> k;
for(int i=1;i<=n;i++) cin >> a[i];
int flag=1;
for(int i=2;i<=n;i++)
if(a[i]<=a[i-1]) flag=0;
if(flag)
{
cout << "NIE";
return 0;
}
mn[1]=a[1],mx[n]=a[n];
for(int i=2;i<=n;i++) mn[i]=min(mn[i-1],a[i]);
for(int i=n-1;i>=1;i--) mx[i]=max(mx[i+1],a[i]);
for(int i=1;i<n;i++)
{
if(mn[i]>mx[i+1])
{
cout << "TAK\n";
vis[i]=1,k-=2;
for(int j=1;j<n;j++)
if(k&&!vis[j]) vis[j]=1,--k;
for(int j=1;j<=n;j++)
if(vis[j]) cout << j << " ";
return 0;
}
}
if(k==2)
{
cout << "NIE";
return 0;
}
for(int i=2;i<n;i++)
{
if(a[i]>=mx[i+1]||a[i]<=mn[i-1])
{
cout << "TAK\n";
vis[i-1]=vis[i]=1,k-=3;
for(int j=1;j<n;j++)
if(k&&!vis[j]) vis[j]=1,--k;
for(int j=1;j<=n;j++)
if(vis[j]) cout << j << " ";
return 0;
}
}
if(k==3)
{
cout << "NIE";
return 0;
}
for(int i=1;i<n;i++)
{
if(a[i]>=a[i+1])
{
cout << "TAK\n";
vis[i]=1,k-=2;
if(i+1<n) vis[i+1]=1,--k;
if(i+2<n) vis[i+2]=1,--k;
for(int j=1;j<n;j++)
if(k&&!vis[j]) vis[j]=1,--k;
for(int j=1;j<=n;j++)
if(vis[j]) cout << j << " ";
return 0;
}
}
return 0;
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 1
Accepted
time: 2ms
memory: 3332kb
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: 3432kb
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: 3336kb
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: 0
Accepted
time: 2ms
memory: 3420kb
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 4
result:
ok good solution
Test #5:
score: 0
Accepted
time: 1ms
memory: 3432kb
input:
20 10 3 4 3 3 3 4 3 2 1 1 4 6 4 5 5 5 4 2 4 2
output:
TAK 1 2 3 4 5 6 7 8 9
result:
ok good solution
Test #6:
score: 0
Accepted
time: 2ms
memory: 3268kb
input:
20 20 999999999 1000000000 1000000000 999999999 1000000000 1000000000 999999997 999999999 999999997 1000000000 999999998 999999997 999999998 999999999 999999998 999999997 1000000000 999999998 999999997 999999999
output:
TAK 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
result:
ok good solution
Test #7:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
20 4 500000006 500000013 500000023 500000038 500000045 500000057 500000063 500000074 500000083 500000099 500000107 500000114 500000128 500000137 500000141 500000157 500000168 500000177 500000181 500000196
output:
NIE
result:
ok no solution
Test #8:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
20 4 500000013 500000007 500000029 500000039 500000049 500000051 500000061 500000071 500000089 500000099 500000105 500000113 500000128 500000131 500000142 500000152 500000166 500000171 500000182 500000192
output:
TAK 1 2 3
result:
ok good solution
Test #9:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
20 4 4 15 27 38 44 58 68 75 87 94 103 119 128 138 144 160 167 174 194 185
output:
TAK 1 18 19
result:
ok good solution
Test #10:
score: -1
Wrong Answer
time: 2ms
memory: 3284kb
input:
20 4 5007 5018 5023 5036 5043 5055 5061 5077 5084 5092 5113 5108 5129 5138 5144 5154 5166 5178 5187 5199
output:
TAK 11 12 13
result:
wrong answer bad solution
Subtask #2:
score: 0
Wrong Answer
Test #15:
score: 1
Accepted
time: 2ms
memory: 3420kb
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: 3548kb
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: 0ms
memory: 3316kb
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 1 2
result:
ok good solution
Test #18:
score: 0
Accepted
time: 2ms
memory: 3332kb
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 3
result:
ok good solution
Test #19:
score: 0
Accepted
time: 2ms
memory: 3424kb
input:
500 480 269 320 954 88 39 570 80 475 550 695 987 691 322 385 792 651 376 343 967 609 985 78 299 123 210 21 384 687 572 740 501 746 622 478 972 496 176 835 878 955 222 31 999 565 18 335 519 592 577 541 208 56 329 191 378 387 995 374 402 158 697 281 322 325 636 278 346 536 247 225 618 144 183 260 106 ...
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 #20:
score: 0
Accepted
time: 0ms
memory: 3328kb
input:
500 4 500000005 500000012 500000026 500000039 500000049 500000059 500000064 500000077 500000082 500000098 500000102 500000119 500000129 500000132 500000144 500000156 500000168 500000171 500000182 500000199 500000207 500000216 500000222 500000239 500000248 500000254 500000263 500000272 500000287 5000...
output:
NIE
result:
ok no solution
Test #21:
score: -1
Wrong Answer
time: 2ms
memory: 3320kb
input:
500 4 5008 5018 5025 5037 5049 5057 5064 5076 5088 5098 5102 5111 5124 5132 5148 5157 5163 5174 5182 5198 5209 5218 5222 5232 5246 5254 5261 5279 5281 5299 5301 5312 5328 5335 5341 5351 5364 5372 5388 5394 5403 5418 5423 5436 5449 5456 5468 5478 5487 5498 5508 5512 5525 5537 5549 5557 5561 5576 5585...
output:
TAK 251 252 253
result:
wrong answer bad solution
Subtask #3:
score: 0
Wrong Answer
Test #26:
score: 1
Accepted
time: 1ms
memory: 3452kb
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: 2ms
memory: 3568kb
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: 3352kb
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 1 2
result:
ok good solution
Test #29:
score: 0
Accepted
time: 1ms
memory: 3352kb
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 3
result:
ok good solution
Test #30:
score: 0
Accepted
time: 2ms
memory: 3368kb
input:
2000 2000 1654 1473 3200 3918 2351 1292 55 423 2393 768 1678 2884 3714 3119 618 1441 3499 3953 1004 2817 3524 2313 857 1896 2592 2754 555 3714 1114 1266 2591 3633 1799 2300 1901 3175 2608 2518 3445 3207 3473 1146 1957 886 698 2458 272 3015 2167 2212 1976 2260 3980 3082 3268 2863 703 193 2859 3838 24...
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 #31:
score: 0
Accepted
time: 0ms
memory: 3332kb
input:
2000 4 500000006 500000013 500000025 500000033 500000048 500000052 500000066 500000076 500000081 500000095 500000109 500000119 500000127 500000131 500000149 500000152 500000165 500000179 500000182 500000196 500000206 500000217 500000227 500000237 500000246 500000251 500000261 500000276 500000284 500...
output:
NIE
result:
ok no solution
Test #32:
score: -1
Wrong Answer
time: 2ms
memory: 3572kb
input:
2000 4 1000006 1000019 1000028 1000034 1000048 1000053 1000063 1000075 1000082 1000091 1000105 1000115 1000125 1000132 1000145 1000153 1000167 1000173 1000181 1000199 1000204 1000214 1000227 1000239 1000242 1000257 1000261 1000277 1000282 1000299 1000306 1000314 1000325 1000337 1000344 1000358 10003...
output:
TAK 1001 1002 1003
result:
wrong answer bad solution
Subtask #4:
score: 0
Wrong Answer
Test #38:
score: 1
Accepted
time: 2ms
memory: 3332kb
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: 3456kb
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: 3452kb
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: 0ms
memory: 3352kb
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: 1ms
memory: 3336kb
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 1 2 3
result:
ok good solution
Test #43:
score: 0
Accepted
time: 2ms
memory: 3340kb
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: 1ms
memory: 3424kb
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: -1
Wrong Answer
time: 2ms
memory: 3572kb
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 1001 1002 1003
result:
wrong answer bad solution
Subtask #5:
score: 0
Wrong Answer
Test #50:
score: 1
Accepted
time: 44ms
memory: 9180kb
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: 55ms
memory: 9280kb
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: 19ms
memory: 9152kb
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: 38ms
memory: 9400kb
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: 37ms
memory: 9188kb
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: 37ms
memory: 9396kb
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 17 18
result:
ok good solution
Test #61:
score: 0
Accepted
time: 48ms
memory: 9400kb
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: 6508kb
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: 25ms
memory: 9356kb
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: 45ms
memory: 9180kb
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: 33ms
memory: 9180kb
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: 22ms
memory: 5664kb
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: 20ms
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: 10ms
memory: 5780kb
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: 14ms
memory: 5664kb
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: 0
Accepted
time: 37ms
memory: 6432kb
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:
ok good solution
Test #72:
score: 0
Accepted
time: 17ms
memory: 4212kb
input:
200000 4 500000007 500000013 500000024 500000036 500000045 500000053 500000065 500000078 500000081 500000093 500000104 500000115 500000127 500000131 500000141 500000151 500000161 500000173 500000186 500000194 500000207 500000218 500000227 500000237 500000242 500000252 500000264 500000278 500000286 5...
output:
NIE
result:
ok no solution
Test #73:
score: -1
Wrong Answer
time: 16ms
memory: 5780kb
input:
200000 4 1000003 1000017 1000027 1000034 1000043 1000054 1000065 1000074 1000082 1000093 1000103 1000116 1000124 1000135 1000142 1000152 1000169 1000176 1000186 1000198 1000201 1000219 1000221 1000238 1000249 1000257 1000266 1000276 1000287 1000294 1000302 1000315 1000328 1000336 1000346 1000359 100...
output:
TAK 100001 100002 100003
result:
wrong answer bad solution
Subtask #8:
score: 0
Wrong Answer
Test #80:
score: 1
Accepted
time: 27ms
memory: 6412kb
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: 23ms
memory: 6840kb
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: 16ms
memory: 6836kb
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: 0
Accepted
time: 17ms
memory: 6936kb
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 3
result:
ok good solution
Test #84:
score: 0
Accepted
time: 49ms
memory: 8024kb
input:
300000 299980 127682 64809 375816 512981 293891 330763 465367 329221 553512 481368 324283 587772 116588 520104 142038 430755 76012 388803 236807 535733 443513 299938 50874 552868 175853 114119 58413 56441 197815 232916 7968 84525 537073 258024 236217 532622 549190 352114 151438 140875 22389 16790 40...
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 #85:
score: 0
Accepted
time: 16ms
memory: 4712kb
input:
300000 4 500000007 500000013 500000029 500000031 500000048 500000057 500000068 500000077 500000086 500000092 500000108 500000115 500000121 500000134 500000141 500000154 500000162 500000178 500000186 500000198 500000203 500000214 500000222 500000236 500000246 500000253 500000264 500000274 500000287 5...
output:
NIE
result:
ok no solution
Test #86:
score: -1
Wrong Answer
time: 21ms
memory: 6952kb
input:
300000 4 100007 100017 100023 100031 100048 100059 100068 100075 100087 100099 100104 100116 100128 100131 100144 100155 100169 100172 100182 100198 100206 100212 100222 100238 100244 100253 100264 100272 100286 100291 100304 100318 100326 100335 100344 100359 100365 100378 100386 100395 100407 1004...
output:
TAK 150001 150002 150003
result:
wrong answer bad solution
Subtask #9:
score: 0
Wrong Answer
Test #92:
score: 1
Accepted
time: 19ms
memory: 6512kb
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: 34ms
memory: 8228kb
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: 20ms
memory: 8108kb
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: 0
Accepted
time: 42ms
memory: 8008kb
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 3
result:
ok good solution
Test #96:
score: 0
Accepted
time: 67ms
memory: 9556kb
input:
400000 400000 290738 96547 201652 502285 73023 351491 38277 770308 348219 754288 676356 386303 63805 230986 289865 278297 613756 252911 717416 181021 213635 649612 112172 407869 178896 481911 158055 445121 720253 425157 400555 620389 80727 704653 638011 245844 122103 758269 149686 115024 657592 7720...
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 #97:
score: 0
Accepted
time: 30ms
memory: 4876kb
input:
400000 4 500000001 500000013 500000026 500000034 500000048 500000054 500000062 500000072 500000082 500000094 500000103 500000115 500000121 500000139 500000143 500000152 500000162 500000175 500000182 500000191 500000201 500000214 500000223 500000232 500000248 500000251 500000261 500000279 500000284 5...
output:
NIE
result:
ok no solution
Test #98:
score: -1
Wrong Answer
time: 26ms
memory: 8012kb
input:
400000 4 100008 100017 100028 100035 100044 100054 100066 100079 100083 100094 100108 100116 100122 100134 100144 100159 100161 100177 100182 100191 100202 100212 100226 100234 100246 100251 100261 100277 100287 100296 100304 100313 100321 100339 100341 100357 100367 100376 100386 100399 100405 1004...
output:
TAK 200001 200002 200003
result:
wrong answer bad solution
Subtask #10:
score: 0
Wrong Answer
Test #106:
score: 1
Accepted
time: 46ms
memory: 9176kb
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: 32ms
memory: 9168kb
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 2 3
result:
ok good solution
Test #108:
score: 0
Accepted
time: 33ms
memory: 9180kb
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 1 2
result:
ok good solution
Test #109:
score: 0
Accepted
time: 52ms
memory: 9272kb
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 3
result:
ok good solution
Test #110:
score: 0
Accepted
time: 64ms
memory: 11144kb
input:
500000 499980 235683 811932 511135 575238 768508 339387 527540 76931 742926 194504 828429 617666 294669 109164 204860 809488 285964 917019 81674 608196 983757 231990 140638 928406 247475 616999 141346 233801 409859 101045 127606 239900 824381 653042 956156 126362 778665 713481 966047 772822 943610 1...
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 #111:
score: 0
Accepted
time: 44ms
memory: 5452kb
input:
500000 4 500000005 500000016 500000022 500000038 500000041 500000058 500000065 500000078 500000087 500000091 500000104 500000113 500000124 500000135 500000143 500000156 500000163 500000171 500000188 500000191 500000206 500000212 500000226 500000232 500000249 500000252 500000269 500000272 500000283 5...
output:
NIE
result:
ok no solution
Test #112:
score: 0
Accepted
time: 44ms
memory: 9356kb
input:
500000 4 100016 100008 100025 100035 100048 100058 100066 100074 100088 100091 100109 100114 100124 100139 100148 100153 100169 100174 100187 100191 100204 100217 100225 100239 100241 100254 100267 100274 100285 100293 100306 100316 100327 100338 100343 100357 100369 100373 100385 100395 100404 1004...
output:
TAK 1 2 3
result:
ok good solution
Test #113:
score: 0
Accepted
time: 23ms
memory: 9156kb
input:
500000 3 1 7 44 32 60 46 56 48 79 39 53 52 43 29 70 56 14 3 63 54 72 29 7 5 64 23 46 89 91 81 72 56 97 22 5 49 73 49 86 3 35 35 64 35 70 94 94 30 83 78 9 7 53 7 62 12 97 23 20 74 63 58 16 12 66 93 36 23 81 39 75 52 94 74 9 22 98 3 63 54 59 6 87 91 40 9 44 74 75 97 35 79 79 8 12 66 5 67 87 13 72 63 6...
output:
NIE
result:
ok no solution
Test #114:
score: -1
Wrong Answer
time: 33ms
memory: 9120kb
input:
500000 2 330 364 390 370 377 378 387 368 381 397 387 370 363 344 398 393 349 396 335 338 398 394 344 373 334 352 363 367 367 347 340 330 400 358 336 337 378 379 396 391 366 399 334 336 385 366 330 354 357 356 397 369 373 395 351 332 340 361 370 351 355 336 358 348 375 351 391 340 340 339 392 345 376...
output:
NIE
result:
wrong answer Jury's Answer: TAK; Your Answer: NIE