結果
| 問題 | No.2779 Don't make Pair |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 23:17:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 217 ms / 2,000 ms |
| コード長 | 346 bytes |
| 記録 | |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 107,136 KB |
| 最終ジャッジ日時 | 2024-12-26 10:20:10 |
| 合計ジャッジ時間 | 5,064 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 24 |
ソースコード
n=int(input())
L=list(map(int,input().split()))
SL,SR=set(),set()
from collections import defaultdict
dr=defaultdict(int)
for e in L:
dr[e]+=1
if 2<=dr[e]:
SR.add(e)
ans=[]
for i in range(n-1):
e=L[i]
if e not in SL:
SL.add(e)
else:
break
dr[e]-=1
if dr[e]<=1:
SR-={e}
if SR==set():
ans.append(i+1)
print(len(ans))
print(*ans)