結果

問題 No.2779 Don't make Pair
ユーザー hiro1729hiro1729
提出日時 2024-06-07 21:35:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 102,584 KB
最終ジャッジ日時 2024-06-07 21:35:53
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,120 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 46 ms
53,120 KB
testcase_03 WA -
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 39 ms
53,632 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 112 ms
94,080 KB
testcase_13 AC 88 ms
94,208 KB
testcase_14 AC 83 ms
87,264 KB
testcase_15 AC 102 ms
100,116 KB
testcase_16 AC 96 ms
98,816 KB
testcase_17 AC 97 ms
96,980 KB
testcase_18 AC 91 ms
92,672 KB
testcase_19 AC 103 ms
99,456 KB
testcase_20 AC 81 ms
86,016 KB
testcase_21 AC 101 ms
97,920 KB
testcase_22 AC 105 ms
97,920 KB
testcase_23 AC 131 ms
102,584 KB
testcase_24 AC 102 ms
97,920 KB
testcase_25 AC 102 ms
98,196 KB
testcase_26 AC 103 ms
98,304 KB
testcase_27 AC 109 ms
98,048 KB
testcase_28 AC 102 ms
98,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
a = list(map(int, input().split()))
m = 1
M = n - 1
d = defaultdict(list)
for i in range(n):
	d[a[i]].append(i)
for i, j in d.items():
	if len(j) > 2:
		exit(print(0))
	if len(j) == 2:
		m = max(m, j[0] + 1)
		M = min(M, j[1])
ans = list(range(m, M + 1))
print(len(ans))
print(*ans)
0