結果

問題 No.2779 Don't make Pair
ユーザー hiro1729hiro1729
提出日時 2024-06-07 21:37:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,232 KB
最終ジャッジ日時 2024-06-07 21:37:11
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 41 ms
52,992 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 49 ms
64,256 KB
testcase_10 AC 67 ms
84,992 KB
testcase_11 AC 53 ms
67,584 KB
testcase_12 AC 87 ms
94,080 KB
testcase_13 AC 85 ms
94,080 KB
testcase_14 AC 81 ms
87,296 KB
testcase_15 AC 104 ms
99,840 KB
testcase_16 AC 98 ms
99,072 KB
testcase_17 AC 100 ms
96,584 KB
testcase_18 AC 94 ms
92,800 KB
testcase_19 AC 102 ms
99,200 KB
testcase_20 AC 87 ms
86,016 KB
testcase_21 AC 106 ms
98,328 KB
testcase_22 AC 105 ms
98,176 KB
testcase_23 AC 140 ms
102,232 KB
testcase_24 AC 105 ms
98,172 KB
testcase_25 AC 105 ms
98,048 KB
testcase_26 AC 108 ms
97,920 KB
testcase_27 AC 112 ms
97,792 KB
testcase_28 AC 107 ms
98,048 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:
		print(0)
		exit(print())
	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