結果
問題 | No.2779 Don't make Pair |
ユーザー | mkawa2 |
提出日時 | 2024-06-07 21:49:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,060 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 35,828 KB |
最終ジャッジ日時 | 2024-06-07 21:49:45 |
合計ジャッジ時間 | 3,331 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,752 KB |
testcase_05 | AC | 36 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 71 ms
22,644 KB |
testcase_13 | AC | 73 ms
22,864 KB |
testcase_14 | AC | 71 ms
17,888 KB |
testcase_15 | AC | 95 ms
23,844 KB |
testcase_16 | AC | 96 ms
24,096 KB |
testcase_17 | AC | 100 ms
23,348 KB |
testcase_18 | AC | 85 ms
18,840 KB |
testcase_19 | AC | 89 ms
23,168 KB |
testcase_20 | AC | 63 ms
17,880 KB |
testcase_21 | AC | 118 ms
33,308 KB |
testcase_22 | AC | 117 ms
32,960 KB |
testcase_23 | AC | 160 ms
35,828 KB |
testcase_24 | AC | 118 ms
32,904 KB |
testcase_25 | AC | 113 ms
32,980 KB |
testcase_26 | AC | 117 ms
33,108 KB |
testcase_27 | AC | 122 ms
33,220 KB |
testcase_28 | AC | 118 ms
32,936 KB |
ソースコード
import sys # sys.setrecursionlimit(1000006) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = -1-(-1 << 31) # inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 from collections import Counter n=II() aa=LI() cnt=Counter(aa) if max(cnt.values())>2: print(0) exit() ll={} l,r=1,n for i,a in enumerate(aa): if a in ll: l=max(l,ll[a]+1) r=min(r,i+1) else: ll[a]=i ans=list(range(l,r)) print(len(ans)) print(*ans)