結果

問題 No.2779 Don't make Pair
ユーザー イルカイルカ
提出日時 2024-06-10 14:20:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 258,896 KB
最終ジャッジ日時 2025-01-02 05:16:34
合計ジャッジ時間 6,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,804 KB
testcase_01 AC 37 ms
53,488 KB
testcase_02 AC 35 ms
53,020 KB
testcase_03 AC 34 ms
52,752 KB
testcase_04 AC 34 ms
52,396 KB
testcase_05 AC 36 ms
52,392 KB
testcase_06 AC 35 ms
52,284 KB
testcase_07 AC 38 ms
52,328 KB
testcase_08 AC 34 ms
52,740 KB
testcase_09 AC 37 ms
62,052 KB
testcase_10 AC 54 ms
79,188 KB
testcase_11 AC 41 ms
64,948 KB
testcase_12 AC 122 ms
120,120 KB
testcase_13 AC 132 ms
140,508 KB
testcase_14 AC 49 ms
73,512 KB
testcase_15 AC 215 ms
192,984 KB
testcase_16 AC 201 ms
182,484 KB
testcase_17 AC 228 ms
204,868 KB
testcase_18 AC 56 ms
79,232 KB
testcase_19 AC 202 ms
180,860 KB
testcase_20 AC 95 ms
103,928 KB
testcase_21 AC 251 ms
210,980 KB
testcase_22 AC 153 ms
137,576 KB
testcase_23 AC 370 ms
258,896 KB
testcase_24 AC 168 ms
145,080 KB
testcase_25 AC 190 ms
166,152 KB
testcase_26 AC 272 ms
240,816 KB
testcase_27 AC 287 ms
247,060 KB
testcase_28 AC 255 ms
234,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
# 全部異なる文字のとき
if len(set(A))==N:
	print(N-1)
	print(" ".join(map(str,range(1,N))))
	exit()
# 左側に重複要素が存在しないiの最小値をもとめる
ng = -1
ok = N
while True:
	left = (ok + ng)//2
	if len(set(A[:left]))!=left:
		ok = left
	else:
		ng = left
	if ng==ok-1:
		break
left = ng
# 右側に重複要素が存在しないiの最大値をもとめる
ng = -1
ok = N
while True:
	right = (ok + ng)//2
	if len(set(A[right:]))!=N-right:
		ng = right
	else:
		ok = right
	if ng==ok-1:
		break
right = ok
ans = range(right, left+1)
print(len(ans))
print(" ".join(map(str,ans)))
"🐬"
0