QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#792737 | #30. Political Development | seungni | 27 | 89ms | 314284kb | C++17 | 1.3kb | 2024-11-29 13:35:44 | 2024-11-29 13:35:44 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
int N, K, ans;
vector<int> graph[50005];
bitset<50005> edge[50005];
void DFS(int root, int now, int state, int k) {
ans = max(ans, k);
if (now == graph[root].size()) return;
int nxt = graph[root][now];
DFS(root, now + 1, state, k);
int flag = 0;
for (int i = 0; i < now; i++) {
if (!(state & (1 << i))) continue;
int p = graph[root][i];
if (!edge[p][nxt]) {
flag = 1;
break;
}
}
if (!flag) DFS(root, now + 1, state + (1 << now), k + 1);
return;
}
void solve() {
cin >> N >> K;
for (int i = 0; i < N; i++) {
int k;
cin >> k;
for (int j = 0; j < k; j++) {
int a;
cin >> a;
graph[i].push_back(a), edge[i][a] = 1;
}
}
for (int i = 0; i < N; i++) {
if (graph[i].size() < K) DFS(i, 0, 0, 1);
}
cout << ans;
return;
}
int main(void) {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
ios::sync_with_stdio(false);
cin.tie(0);
int t = 1;
//cin >> t;
while (t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 4
Accepted
Test #1:
score: 4
Accepted
time: 1ms
memory: 4792kb
input:
8 2 1 2 3 7 3 5 2 7 0 1 1 1 7 1 1 1 7 4 6 4 1 2
output:
2
result:
ok single line: '2'
Test #2:
score: 4
Accepted
time: 1ms
memory: 4908kb
input:
8 2 2 3 7 1 3 2 6 4 3 5 1 0 1 2 2 3 6 2 5 2 1 0
output:
2
result:
ok single line: '2'
Test #3:
score: 4
Accepted
time: 3ms
memory: 34980kb
input:
5000 2 1 1791 1 4343 2 2031 1630 1 286 2 4788 1978 3 847 2364 4193 2 88 1614 1 3321 1 1441 1 1098 1 1547 1 318 1 4939 1 697 3 1335 3973 2092 1 3700 1 3959 1 4582 2 2907 3324 1 364 1 4868 1 1406 4 1827 3291 2215 4513 2 1303 2448 3 3699 2272 775 4 3113 1333 2670 1991 2 2450 3615 4 3825 2008 1100 2938 ...
output:
2
result:
ok single line: '2'
Test #4:
score: 4
Accepted
time: 0ms
memory: 37764kb
input:
5000 2 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460 1 1460...
output:
2
result:
ok single line: '2'
Test #5:
score: 4
Accepted
time: 0ms
memory: 37704kb
input:
5000 2 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782 1 1782...
output:
2
result:
ok single line: '2'
Test #6:
score: 4
Accepted
time: 0ms
memory: 37924kb
input:
5000 2 1 1692 1 3670 1 3770 1 2722 1 2554 1 4972 1 3203 1 1406 1 62 1 2411 1 4472 1 3565 1 1465 1 4734 1 3229 1 707 1 4925 1 597 1 3764 1 1406 1 778 1 2086 1 1696 1 2956 1 707 1 1406 1 3604 1 597 1 1275 1 3203 1 707 1 4577 1 997 1 3604 1 1747 1 860 1 3565 1 3693 1 164 1 818 1 3693 1 4790 1 86 1 3969...
output:
2
result:
ok single line: '2'
Test #7:
score: 4
Accepted
time: 0ms
memory: 37728kb
input:
5000 2 1 1495 1 4736 1 2861 72 2890 4002 3751 2434 4908 3707 1698 4275 2507 2625 1942 1452 1309 2552 4 3667 4794 289 309 3334 2996 3208 1001 2408 707 3200 4272 3343 4465 4748 1352 48 2894 4367 3534 4594 4433 4265 3168 2324 2681 4909 1986 501 2958 784 4138 409 2837 4999 3840 3654 327 3620 4399 319 33...
output:
2
result:
ok single line: '2'
Test #8:
score: 4
Accepted
time: 1ms
memory: 4696kb
input:
5000 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
output:
1
result:
ok single line: '1'
Test #9:
score: 4
Accepted
time: 1ms
memory: 4700kb
input:
1 1 0
output:
1
result:
ok single line: '1'
Test #10:
score: 4
Accepted
time: 0ms
memory: 11020kb
input:
5000 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
output:
2
result:
ok single line: '2'
Subtask #2:
score: 0
Wrong Answer
Dependency #1:
100%
Accepted
Test #11:
score: 12
Accepted
time: 3ms
memory: 37924kb
input:
5000 2 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154 1 1154...
output:
2
result:
ok single line: '2'
Test #12:
score: 12
Accepted
time: 0ms
memory: 36724kb
input:
5000 3 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423 1 1423...
output:
2
result:
ok single line: '2'
Test #13:
score: 12
Accepted
time: 1ms
memory: 5784kb
input:
5 3 2 3 1 2 0 4 2 4 3 2 0 2 2 1 2
output:
2
result:
ok single line: '2'
Test #14:
score: 12
Accepted
time: 0ms
memory: 37828kb
input:
5000 3 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937 1 2937...
output:
2
result:
ok single line: '2'
Test #15:
score: 12
Accepted
time: 1ms
memory: 4896kb
input:
5 3 0 2 2 3 2 3 1 2 2 1 0
output:
3
result:
ok single line: '3'
Test #16:
score: 12
Accepted
time: 3ms
memory: 37708kb
input:
5000 3 1 2124 1 3797 1 4553 1 4508 1 1597 1 1937 1 4085 1 72 1 1579 1 4933 1 4085 1 4553 1 1759 1 3797 1 1579 1 2531 1 4297 1 814 1 3729 1 4070 1 1606 1 1251 1 920 1 1365 1 3586 1 2124 1 827 1 4132 1 4645 1 3586 1 3945 1 72 1 4933 1 1759 1 1365 1 3729 1 1759 1 2531 1 2715 1 1817 1 494 1 1937 1 3489 ...
output:
2
result:
ok single line: '2'
Test #17:
score: 12
Accepted
time: 1ms
memory: 4764kb
input:
5 3 2 4 3 1 4 0 2 4 0 3 1 0 3
output:
3
result:
ok single line: '3'
Test #18:
score: 12
Accepted
time: 0ms
memory: 38028kb
input:
5000 3 1 1692 1 3670 1 3770 1 2722 1 2554 1 4972 1 3203 1 1406 1 62 1 2411 1 4472 1 3565 1 1465 1 4734 1 3229 1 707 1 4925 1 597 1 3764 1 1406 1 778 1 2086 1 1696 1 2956 1 707 1 1406 1 3604 1 597 1 1275 1 3203 1 707 1 4577 1 997 1 3604 1 1747 1 860 1 3565 1 3693 1 164 1 818 1 3693 1 4790 1 86 1 3969...
output:
2
result:
ok single line: '2'
Test #19:
score: 12
Accepted
time: 1ms
memory: 6652kb
input:
5000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
output:
1
result:
ok single line: '1'
Test #20:
score: 12
Accepted
time: 6ms
memory: 34964kb
input:
5000 3 1 4978 1 838 1 2090 1 2059 1 3473 1 3392 1 3776 1 4073 1 1498 1 1831 1 3645 1 323 1 3789 1 3555 1 2658 1 3953 1 167 1 1424 1 1944 1 1748 1 3592 1 1697 1 3034 1 4369 1 834 1 3873 1 3964 1 2160 1 4030 1 3652 1 1931 1 3657 1 1500 1 1193 1 3550 1 3287 1 1339 1 2943 1 4697 1 1390 1 4134 1 3322 1 4...
output:
3
result:
ok single line: '3'
Test #21:
score: 12
Accepted
time: 3ms
memory: 37724kb
input:
5000 3 1 4920 1 3824 1 1763 1 785 1 1613 1 2253 1 3343 1 34 1 905 1 2732 1 2112 1 1644 1 3772 1 4254 1 1143 1 2579 1 3267 1 3263 1 3699 1 2181 1 936 1 867 1 2614 1 865 1 2998 1 901 1 2044 1 2335 1 1665 1 2048 1 571 1 2400 1 1961 1 4537 1 7 1 4327 1 2380 1 1730 1 1232 1 4381 1 154 1 2571 1 807 1 3934...
output:
3
result:
ok single line: '3'
Test #22:
score: 12
Accepted
time: 2ms
memory: 10500kb
input:
5000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4142 0 ...
output:
2
result:
ok single line: '2'
Test #23:
score: 0
Wrong Answer
time: 0ms
memory: 36908kb
input:
5000 3 2 11 4552 2 2485 1399 2 3747 2906 3 3702 2655 2871 1 3902 2 3893 4591 1 3574 1 123 2 3269 1354 1 1201 2 662 831 7 3302 2808 4537 0 3789 2902 2028 5 3598 2273 4345 4790 2111 2 2604 3829 2 3358 2711 5 2831 3507 2723 3472 929 3 4417 1555 4746 2 640 4809 2 1518 4570 1 4562 4 3081 1145 3030 4813 3...
output:
2
result:
wrong answer 1st lines differ - expected: '3', found: '2'
Subtask #3:
score: 23
Accepted
Test #44:
score: 23
Accepted
time: 1ms
memory: 4760kb
input:
5000 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
output:
1
result:
ok single line: '1'
Test #45:
score: 23
Accepted
time: 0ms
memory: 4876kb
input:
20 6 5 16 14 9 18 1 4 15 19 0 7 5 15 8 17 5 12 5 15 16 12 6 13 5 12 18 10 5 9 5 16 4 6 2 8 5 3 16 5 18 8 5 13 17 19 11 1 5 6 2 5 18 10 5 15 4 0 12 11 5 4 14 8 13 17 4 15 9 13 7 5 3 4 14 2 9 5 3 10 19 7 11 5 12 10 17 19 0 5 3 9 1 2 11 5 3 6 0 19 5 5 14 2 18 10 7 5 4 6 8 17 0 5 16 14 13 1 7
output:
3
result:
ok single line: '3'
Test #46:
score: 23
Accepted
time: 1ms
memory: 6772kb
input:
20 6 5 1 8 16 14 9 5 0 12 13 3 7 5 15 18 16 10 17 5 1 10 18 8 12 5 15 6 19 17 11 5 11 7 14 19 17 5 10 12 17 4 18 5 1 11 12 14 5 5 3 0 17 14 13 3 18 0 19 5 15 3 6 16 2 5 4 13 5 7 12 5 1 3 6 11 7 5 15 1 11 8 16 5 8 7 5 16 0 5 18 13 10 4 2 5 13 2 10 14 0 5 6 4 8 5 2 5 15 3 6 9 2 3 4 5 9
output:
3
result:
ok single line: '3'
Test #47:
score: 23
Accepted
time: 1ms
memory: 6360kb
input:
13 5 2 11 12 2 11 2 3 7 6 1 2 11 6 2 11 7 2 11 10 3 2 7 3 3 2 6 4 3 10 12 9 2 11 8 3 8 12 5 6 5 9 0 1 4 3 3 10 8 0
output:
3
result:
ok single line: '3'
Test #48:
score: 23
Accepted
time: 1ms
memory: 4892kb
input:
20 6 5 2 17 13 6 14 5 8 7 5 16 3 5 4 19 14 0 18 4 1 12 11 14 5 10 9 11 14 2 5 8 7 1 16 17 4 10 19 0 13 5 8 5 1 16 9 5 7 5 1 16 12 5 7 15 4 10 19 5 4 13 9 6 18 5 15 4 13 3 19 5 8 15 17 18 3 5 15 10 11 0 6 5 4 2 0 3 18 5 13 9 12 18 11 5 8 7 5 1 17 5 5 16 12 0 19 5 15 12 10 2 14 5 9 2 11 17 6
output:
5
result:
ok single line: '5'
Test #49:
score: 23
Accepted
time: 1ms
memory: 4912kb
input:
20 6 5 7 18 5 3 11 5 7 14 19 16 9 5 13 8 12 4 10 5 7 18 5 0 6 5 13 17 2 6 10 5 7 18 3 0 17 4 3 11 4 10 5 18 5 3 0 1 5 15 14 9 12 2 5 8 19 15 11 1 5 13 12 2 4 6 5 0 14 9 6 15 5 18 8 16 10 2 5 14 17 4 2 10 5 13 8 1 11 19 4 8 16 9 11 5 12 19 15 1 17 5 5 13 19 16 4 5 7 5 3 0 12 5 14 17 9 16 1
output:
5
result:
ok single line: '5'
Test #50:
score: 23
Accepted
time: 1ms
memory: 4880kb
input:
20 6 5 1 3 11 8 19 5 0 3 11 8 18 5 3 14 9 6 17 5 0 1 11 8 2 4 9 16 12 17 5 14 6 10 7 19 5 15 10 5 7 2 5 14 6 13 5 12 5 0 1 3 11 18 5 14 10 4 19 2 5 9 6 5 15 16 5 0 1 3 8 19 5 13 7 16 17 4 5 19 7 18 12 15 5 7 5 2 18 9 5 6 13 16 10 17 5 12 15 18 4 10 4 2 12 15 4 5 1 8 14 13 16 5 0 11 9 13 5
output:
5
result:
ok single line: '5'
Test #51:
score: 23
Accepted
time: 1ms
memory: 4832kb
input:
20 6 5 1 3 11 19 18 5 0 3 11 2 8 5 1 8 14 6 7 5 0 1 11 19 18 4 14 16 12 17 5 11 9 15 10 7 5 10 2 17 13 19 5 11 9 2 13 5 5 1 2 18 9 10 5 8 14 10 5 7 5 8 9 6 5 15 5 0 1 3 7 5 4 13 16 17 4 5 6 18 12 19 7 5 4 9 19 2 15 5 14 5 16 10 17 5 12 15 18 4 17 5 6 15 16 12 4 5 0 3 8 13 16 5 0 3 14 6 13
output:
4
result:
ok single line: '4'
Test #52:
score: 23
Accepted
time: 1ms
memory: 5832kb
input:
20 6 5 15 16 7 13 2 5 15 9 6 11 7 4 19 0 10 5 5 19 8 17 18 10 5 6 19 17 14 18 5 18 13 16 12 2 5 15 9 11 1 4 5 1 8 14 0 16 5 19 3 7 17 10 5 15 6 11 1 10 5 9 8 12 2 3 5 15 9 6 1 13 4 14 10 16 5 5 11 14 0 5 16 5 4 7 18 13 12 5 9 6 11 1 0 5 0 13 5 7 12 5 19 8 4 18 3 5 17 14 5 4 3 5 2 8 3 17 4
output:
5
result:
ok single line: '5'
Test #53:
score: 23
Accepted
time: 1ms
memory: 6848kb
input:
20 6 5 6 15 9 5 10 5 16 10 15 2 4 5 13 1 11 8 15 5 17 9 19 18 5 5 6 1 11 8 15 4 12 9 0 3 5 16 13 12 0 4 4 17 19 14 18 5 12 10 2 4 9 5 11 8 3 0 5 5 1 8 17 0 14 5 15 4 14 2 9 5 16 13 6 5 8 5 16 6 12 14 2 5 13 11 18 10 7 5 1 11 2 4 0 5 13 6 12 19 1 5 7 18 10 19 3 5 17 19 14 3 7 5 16 17 18 3 7
output:
4
result:
ok single line: '4'
Test #54:
score: 23
Accepted
time: 87ms
memory: 314280kb
input:
50000 10 9 32960 26666 36698 27825 19469 40251 7694 43050 49699 9 28680 11214 13759 31209 6922 20079 42730 11997 443 9 4366 42847 15773 31538 6839 18130 22993 45787 37886 9 29348 35251 38031 35020 29149 1972 33352 38984 8565 9 115 2566 8766 22339 44559 33816 38982 39958 14757 9 25095 44878 9405 3414...
output:
3
result:
ok single line: '3'
Test #55:
score: 23
Accepted
time: 1ms
memory: 6840kb
input:
20 6 5 15 4 19 16 11 5 6 2 16 11 4 5 5 1 16 4 11 5 13 15 19 17 11 5 12 5 0 1 2 5 6 12 13 4 2 5 14 8 12 5 1 5 15 17 9 19 10 5 6 14 12 10 18 5 14 18 7 10 13 5 8 18 7 9 15 5 0 3 1 2 19 5 6 14 8 5 4 5 5 15 9 16 3 5 6 8 12 9 18 5 7 10 13 0 3 4 13 0 1 2 4 18 7 3 19 5 14 8 10 9 17 5 7 0 3 11 17
output:
4
result:
ok single line: '4'
Test #56:
score: 23
Accepted
time: 83ms
memory: 314196kb
input:
50000 10 9 18221 24348 28479 32271 21508 5821 37624 9018 33124 9 48435 19120 33947 16663 10731 19082 3065 40727 44231 9 8392 15905 25517 41543 39444 36504 566 37551 40373 9 20939 21154 38126 10687 26894 2326 12921 20390 2714 9 14948 6508 31983 31691 34972 40530 12060 47377 2856 9 23609 46381 2820 10...
output:
9
result:
ok single line: '9'
Test #57:
score: 23
Accepted
time: 1ms
memory: 4812kb
input:
20 6 5 16 5 12 1 10 5 18 16 0 12 5 5 17 8 19 15 12 5 16 11 15 4 14 5 17 9 18 3 13 5 18 0 12 11 1 4 9 10 15 14 4 19 16 15 14 5 17 2 19 9 18 5 8 4 13 10 6 5 19 9 0 11 6 5 16 5 13 3 10 5 2 0 5 1 14 5 17 9 18 11 4 5 12 15 6 3 7 5 2 7 3 14 6 5 0 7 3 1 11 5 2 8 19 4 13 5 8 13 1 4 5 5 17 2 8 10 7
output:
4
result:
ok single line: '4'
Test #58:
score: 23
Accepted
time: 71ms
memory: 314284kb
input:
50000 10 9 30916 34063 27476 12900 46395 22896 47608 43081 36522 9 16351 22058 41003 24951 7867 48553 13812 49227 33653 9 36974 23275 29390 3513 7459 24365 39720 13308 13381 9 23313 2154 1965 47951 3036 3520 39921 2505 45510 9 26552 21810 45179 45599 42706 8524 40981 10314 41981 9 28751 42098 9588 3...
output:
3
result:
ok single line: '3'
Test #59:
score: 23
Accepted
time: 77ms
memory: 314256kb
input:
50000 10 9 36291 13684 8347 34254 12584 37577 428 26971 9897 9 40409 37917 32242 100 45061 18975 24937 35545 24459 9 13393 18678 47226 14718 46930 29116 8563 37330 25359 9 40338 36151 31599 38218 1112 13318 37682 22003 47175 9 48311 27488 6179 7201 6029 46048 36501 39894 10935 9 11562 47084 35646 42...
output:
8
result:
ok single line: '8'
Test #60:
score: 23
Accepted
time: 89ms
memory: 314216kb
input:
50000 10 9 22942 19769 29417 38608 40165 46830 44014 13319 37296 9 3043 34405 43649 24780 34419 42631 151 10305 38128 9 47024 16918 48040 35472 18738 33438 45666 41028 9331 9 9377 31552 35570 28 35640 41742 33336 39699 32963 9 1900 27606 40345 8319 7839 39689 17311 23129 27713 9 20767 12281 36915 48...
output:
9
result:
ok single line: '9'
Test #61:
score: 23
Accepted
time: 78ms
memory: 314256kb
input:
50000 10 9 33482 45772 34312 33638 12738 33479 8340 36848 22625 9 21110 17374 20244 27086 24069 6775 17172 41563 6524 9 12635 39283 48676 30823 19997 34534 2173 9767 11985 9 2858 29801 12693 1285 26074 28461 23409 11329 41503 9 3677 38114 49641 48097 5284 7283 42343 49703 30073 9 41159 35068 37355 2...
output:
8
result:
ok single line: '8'
Subtask #4:
score: 0
Skipped
Dependency #2:
0%
Subtask #5:
score: 0
Skipped
Dependency #2:
0%