結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 38 ms
53,376 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 WA -
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,120 KB
testcase_06 AC 39 ms
53,248 KB
testcase_07 AC 38 ms
53,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 86 ms
93,824 KB
testcase_13 AC 84 ms
94,208 KB
testcase_14 AC 80 ms
87,296 KB
testcase_15 AC 102 ms
100,224 KB
testcase_16 AC 96 ms
99,072 KB
testcase_17 AC 96 ms
96,640 KB
testcase_18 AC 90 ms
93,184 KB
testcase_19 AC 100 ms
99,328 KB
testcase_20 AC 82 ms
86,140 KB
testcase_21 AC 103 ms
98,304 KB
testcase_22 AC 100 ms
98,068 KB
testcase_23 AC 128 ms
102,496 KB
testcase_24 AC 101 ms
98,252 KB
testcase_25 AC 101 ms
98,276 KB
testcase_26 AC 103 ms
98,172 KB
testcase_27 AC 109 ms
98,304 KB
testcase_28 AC 103 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
a = list(map(int, input().split()))
m = 0
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])
		M = min(M, j[1])
ans = list(range(m + 1, M + 1))
print(len(ans))
print(*ans)
0