結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
53,632 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 WA -
testcase_07 AC 39 ms
53,888 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 78 ms
93,952 KB
testcase_13 AC 81 ms
94,208 KB
testcase_14 WA -
testcase_15 AC 95 ms
100,224 KB
testcase_16 AC 117 ms
99,180 KB
testcase_17 AC 91 ms
96,640 KB
testcase_18 WA -
testcase_19 AC 93 ms
99,576 KB
testcase_20 AC 74 ms
85,888 KB
testcase_21 AC 94 ms
98,304 KB
testcase_22 AC 93 ms
98,304 KB
testcase_23 AC 118 ms
102,760 KB
testcase_24 AC 95 ms
98,304 KB
testcase_25 AC 93 ms
98,048 KB
testcase_26 AC 95 ms
98,528 KB
testcase_27 AC 101 ms
97,920 KB
testcase_28 AC 95 ms
98,304 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