結果

問題 No.2779 Don't make Pair
ユーザー manoto43manoto43
提出日時 2024-06-07 22:44:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-12-26 09:05:14
合計ジャッジ時間 3,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict

def main():
    N = int(input())
    A = list(map(int, input().split()))
    
    l,r = set(),set()
    d_l,d_r = defaultdict(int),Counter(A)

    for k in d_r.keys():
        if d_r[k] > 1:
            r.add(k)
    
    ans = []

    for i,a in enumerate(A[:-1]):
        d_l[a] += 1
        if d_l[a] > 1:
            l.add(a)
        
        d_r[a] -= 1
        if d_r[a] <= 1 and a in r:
            r.remove(a)
        
        if not(l or r):
            ans.append(i+1)
    
    print(len(ans))
    print(*ans)







if __name__ == "__main__":
    main()
0