結果
| 問題 |
No.2779 Don't make Pair
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 23:14:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 366 bytes |
| コンパイル時間 | 462 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 107,520 KB |
| 最終ジャッジ日時 | 2024-12-26 10:13:59 |
| 合計ジャッジ時間 | 4,842 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 2 |
| other | AC * 13 WA * 11 |
ソースコード
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-1):
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)