結果

問題 No.2779 Don't make Pair
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-06-07 22:05:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 104,212 KB
最終ジャッジ日時 2024-06-07 22:05:31
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,620 KB
testcase_01 AC 36 ms
52,176 KB
testcase_02 AC 32 ms
52,176 KB
testcase_03 AC 32 ms
52,056 KB
testcase_04 AC 31 ms
52,704 KB
testcase_05 AC 32 ms
52,004 KB
testcase_06 AC 32 ms
52,364 KB
testcase_07 AC 33 ms
52,260 KB
testcase_08 AC 31 ms
52,248 KB
testcase_09 AC 40 ms
62,276 KB
testcase_10 AC 55 ms
81,836 KB
testcase_11 AC 41 ms
64,396 KB
testcase_12 AC 64 ms
87,996 KB
testcase_13 AC 64 ms
87,528 KB
testcase_14 AC 69 ms
87,152 KB
testcase_15 AC 94 ms
104,212 KB
testcase_16 AC 89 ms
102,852 KB
testcase_17 AC 90 ms
98,328 KB
testcase_18 AC 79 ms
92,784 KB
testcase_19 AC 86 ms
100,012 KB
testcase_20 AC 59 ms
80,536 KB
testcase_21 AC 88 ms
101,764 KB
testcase_22 AC 89 ms
101,376 KB
testcase_23 AC 111 ms
101,272 KB
testcase_24 AC 90 ms
101,460 KB
testcase_25 AC 89 ms
101,336 KB
testcase_26 AC 92 ms
101,480 KB
testcase_27 AC 96 ms
101,460 KB
testcase_28 AC 91 ms
101,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
*A, = map(int, input().split())

poses = {}

# 閉区間
flag = False
for i in range(N):
	if A[i] in poses:
		if poses[A[i]][1] == -1:
			poses[A[i]][1] = i
		else:
			flag = True
			break
	else:
		poses[A[i]] = [i+1, -1]

if flag:
	print(0)
	print()
else:
	r = [1, N-1]
	for pos in poses.values():
		if pos[1] == -1: continue
		r[0] = max(r[0], pos[0])
		r[1] = min(r[1], pos[1])
	ans = range(r[0], r[1]+1)
	print(len(ans))
	print(*ans)
0