結果

問題 No.2779 Don't make Pair
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-07 21:51:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 121,276 KB
最終ジャッジ日時 2024-06-07 21:51:29
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,456 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 51 ms
64,768 KB
testcase_10 AC 73 ms
83,456 KB
testcase_11 AC 54 ms
67,584 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
114,304 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 140 ms
121,080 KB
testcase_22 AC 144 ms
121,276 KB
testcase_23 WA -
testcase_24 AC 145 ms
121,216 KB
testcase_25 AC 144 ms
120,936 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 149 ms
121,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
l={}
r={}
for i in range(n):
	l[a[i]]=0
	r[a[i]]=0
for i in range(n):
	l[a[i]]+=1
c=0
for v in r:
	c+=l[v]>1 or r[v]>1
ans=[]
for i in range(n-1):
	c-=l[a[i]]>1 or r[a[i]]>1
	l[a[i]]+=1
	r[a[i]]-=1
	c+=l[a[i]]>1 or r[a[i]]>1
	if c==0:
		ans+=[i+1]
print(len(ans))
print(*ans)
0