結果

問題 No.2779 Don't make Pair
ユーザー miho-4miho-4
提出日時 2024-06-07 23:15:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 107,140 KB
最終ジャッジ日時 2024-06-07 23:15:42
合計ジャッジ時間 3,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 WA -
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 38 ms
53,120 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,248 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 47 ms
63,872 KB
testcase_10 AC 64 ms
81,152 KB
testcase_11 AC 50 ms
66,688 KB
testcase_12 AC 91 ms
94,720 KB
testcase_13 AC 82 ms
86,272 KB
testcase_14 WA -
testcase_15 AC 109 ms
102,400 KB
testcase_16 AC 99 ms
102,400 KB
testcase_17 AC 99 ms
95,592 KB
testcase_18 WA -
testcase_19 AC 103 ms
99,840 KB
testcase_20 AC 79 ms
86,656 KB
testcase_21 AC 108 ms
107,096 KB
testcase_22 AC 101 ms
107,008 KB
testcase_23 AC 149 ms
107,008 KB
testcase_24 AC 104 ms
107,080 KB
testcase_25 AC 104 ms
107,140 KB
testcase_26 AC 115 ms
107,008 KB
testcase_27 AC 121 ms
107,008 KB
testcase_28 AC 114 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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