結果

問題 No.2779 Don't make Pair
ユーザー noriocnorioc
提出日時 2024-06-07 22:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-06-07 22:54:15
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,248 KB
testcase_01 AC 38 ms
53,248 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 38 ms
53,120 KB
testcase_06 AC 40 ms
53,120 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 38 ms
53,888 KB
testcase_09 AC 45 ms
64,256 KB
testcase_10 AC 61 ms
80,768 KB
testcase_11 AC 49 ms
66,944 KB
testcase_12 AC 91 ms
95,232 KB
testcase_13 AC 84 ms
90,368 KB
testcase_14 AC 85 ms
89,472 KB
testcase_15 AC 110 ms
99,840 KB
testcase_16 AC 105 ms
101,504 KB
testcase_17 AC 102 ms
92,544 KB
testcase_18 AC 94 ms
96,768 KB
testcase_19 AC 105 ms
96,000 KB
testcase_20 AC 83 ms
86,784 KB
testcase_21 AC 110 ms
106,752 KB
testcase_22 AC 106 ms
106,752 KB
testcase_23 AC 149 ms
106,752 KB
testcase_24 AC 103 ms
106,752 KB
testcase_25 AC 105 ms
107,008 KB
testcase_26 AC 125 ms
106,752 KB
testcase_27 AC 122 ms
106,752 KB
testcase_28 AC 119 ms
106,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

rfreq = Counter()
rdup = 0
for i in range(N):
    rfreq[A[i]] += 1
    if rfreq[A[i]] == 2:
        rdup += 1

ans = []
lfreq = Counter()
for i in range(N-1):
    lfreq[A[i]] += 1
    if lfreq[A[i]] == 2:
        break

    rfreq[A[i]] -= 1
    if rfreq[A[i]] == 1:
        rdup -= 1

    if rdup == 0:
        ans.append(i+1)

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