結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 32 ms
51,968 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 33 ms
51,968 KB
testcase_09 AC 38 ms
61,440 KB
testcase_10 AC 53 ms
77,824 KB
testcase_11 AC 40 ms
63,744 KB
testcase_12 AC 118 ms
119,808 KB
testcase_13 AC 132 ms
139,968 KB
testcase_14 AC 48 ms
72,192 KB
testcase_15 AC 232 ms
192,924 KB
testcase_16 AC 209 ms
182,108 KB
testcase_17 AC 223 ms
204,640 KB
testcase_18 AC 50 ms
76,928 KB
testcase_19 AC 194 ms
180,276 KB
testcase_20 AC 101 ms
103,424 KB
testcase_21 AC 235 ms
210,816 KB
testcase_22 AC 147 ms
136,900 KB
testcase_23 AC 384 ms
258,076 KB
testcase_24 AC 166 ms
144,792 KB
testcase_25 AC 179 ms
165,588 KB
testcase_26 AC 271 ms
240,784 KB
testcase_27 AC 292 ms
246,600 KB
testcase_28 AC 245 ms
233,732 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