結果
問題 | No.2779 Don't make Pair |
ユーザー | mkawa2 |
提出日時 | 2024-06-07 21:49:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,060 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 35,852 KB |
最終ジャッジ日時 | 2024-12-26 07:44:42 |
合計ジャッジ時間 | 3,427 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,496 KB |
testcase_03 | WA | - |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 28 ms
10,624 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 73 ms
21,732 KB |
testcase_13 | AC | 74 ms
22,848 KB |
testcase_14 | AC | 70 ms
17,760 KB |
testcase_15 | AC | 99 ms
23,712 KB |
testcase_16 | AC | 97 ms
24,144 KB |
testcase_17 | AC | 95 ms
23,360 KB |
testcase_18 | AC | 87 ms
18,692 KB |
testcase_19 | AC | 93 ms
23,008 KB |
testcase_20 | AC | 58 ms
17,880 KB |
testcase_21 | AC | 116 ms
33,312 KB |
testcase_22 | AC | 126 ms
32,988 KB |
testcase_23 | AC | 155 ms
35,852 KB |
testcase_24 | AC | 118 ms
33,108 KB |
testcase_25 | AC | 119 ms
32,856 KB |
testcase_26 | AC | 121 ms
32,976 KB |
testcase_27 | AC | 126 ms
33,296 KB |
testcase_28 | AC | 121 ms
32,904 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)