結果

問題 No.2779 Don't make Pair
ユーザー miho-4miho-4
提出日時 2024-06-07 23:13:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-12-26 10:11:43
合計ジャッジ時間 4,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 3
other AC * 10 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=list(map(int,input().split()))
SL,SR=set(),set()
from collections import defaultdict
dl=defaultdict(int)
dr=defaultdict(int)

for e in L:
	dr[e]+=1
	if 2<=dr[e]:
		SR.add(e)

ans=[]
for i in range(n):
	e=L[i]
	if e not in SL:
		SL.add(e)
	else:
		break
	dr[e]-=1
	if dr[e]==0:
		SR-={e}
	if SR==set():
		ans.append(i+1)
print(len(ans))
print(*ans)
0