結果

問題 No.2779 Don't make Pair
ユーザー miho-4miho-4
提出日時 2024-06-07 23:14:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 107,364 KB
最終ジャッジ日時 2024-06-07 23:14:35
合計ジャッジ時間 3,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
53,632 KB
testcase_07 WA -
testcase_08 AC 39 ms
53,120 KB
testcase_09 AC 50 ms
63,888 KB
testcase_10 AC 68 ms
80,896 KB
testcase_11 AC 53 ms
66,560 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 87 ms
84,624 KB
testcase_15 WA -
testcase_16 AC 106 ms
101,592 KB
testcase_17 WA -
testcase_18 AC 95 ms
88,192 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 121 ms
107,084 KB
testcase_22 AC 113 ms
106,876 KB
testcase_23 WA -
testcase_24 AC 112 ms
107,136 KB
testcase_25 AC 117 ms
107,316 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 138 ms
107,104 KB
権限があれば一括ダウンロードができます

ソースコード

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-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)
0