結果

問題 No.2779 Don't make Pair
ユーザー るこーそーるこーそー
提出日時 2024-09-25 15:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-25 15:16:17
合計ジャッジ時間 5,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 49 ms
53,904 KB
testcase_03 AC 52 ms
53,504 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 46 ms
53,888 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 60 ms
65,792 KB
testcase_10 AC 83 ms
84,736 KB
testcase_11 AC 63 ms
68,864 KB
testcase_12 AC 114 ms
95,616 KB
testcase_13 AC 112 ms
90,752 KB
testcase_14 AC 100 ms
89,728 KB
testcase_15 AC 139 ms
100,608 KB
testcase_16 AC 160 ms
101,888 KB
testcase_17 AC 125 ms
93,440 KB
testcase_18 AC 113 ms
97,024 KB
testcase_19 AC 131 ms
100,096 KB
testcase_20 AC 106 ms
87,296 KB
testcase_21 AC 148 ms
107,392 KB
testcase_22 AC 149 ms
107,392 KB
testcase_23 AC 177 ms
107,316 KB
testcase_24 AC 146 ms
107,264 KB
testcase_25 AC 144 ms
107,264 KB
testcase_26 AC 155 ms
107,136 KB
testcase_27 AC 159 ms
107,264 KB
testcase_28 AC 148 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n=int(input())
A=list(map(int,input().split()))

ok_left,ok_right=0,0
left,right=defaultdict(int),defaultdict(int)
for a in A:
    right[a]+=1
    if right[a]==2:
        ok_right+=1
        
ans=[]
for j in range(n-1):
    left[A[j]]+=1
    if left[A[j]]==2:
        ok_left+=1
    
    right[A[j]]-=1
    if right[A[j]]==1:
        ok_right-=1
    
    if ok_left==0 and ok_right==0:
        ans.append(j+1)

print(len(ans))
print(*ans)
0