結果

問題 No.2779 Don't make Pair
ユーザー ThetaTheta
提出日時 2024-07-10 17:35:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 111,740 KB
最終ジャッジ日時 2024-07-10 17:35:39
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,908 KB
testcase_01 AC 40 ms
54,104 KB
testcase_02 AC 37 ms
54,716 KB
testcase_03 AC 37 ms
55,484 KB
testcase_04 AC 38 ms
55,620 KB
testcase_05 AC 37 ms
54,380 KB
testcase_06 AC 37 ms
54,264 KB
testcase_07 AC 37 ms
54,676 KB
testcase_08 AC 37 ms
54,368 KB
testcase_09 AC 48 ms
66,064 KB
testcase_10 AC 64 ms
85,872 KB
testcase_11 AC 52 ms
68,292 KB
testcase_12 AC 87 ms
95,680 KB
testcase_13 AC 84 ms
92,568 KB
testcase_14 AC 79 ms
90,216 KB
testcase_15 AC 106 ms
101,748 KB
testcase_16 AC 100 ms
101,704 KB
testcase_17 AC 95 ms
93,908 KB
testcase_18 AC 89 ms
95,300 KB
testcase_19 AC 100 ms
100,188 KB
testcase_20 AC 78 ms
86,772 KB
testcase_21 AC 116 ms
106,924 KB
testcase_22 AC 113 ms
107,252 KB
testcase_23 AC 155 ms
111,740 KB
testcase_24 AC 115 ms
107,012 KB
testcase_25 AC 113 ms
106,892 KB
testcase_26 AC 113 ms
106,820 KB
testcase_27 AC 123 ms
106,704 KB
testcase_28 AC 110 ms
107,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


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

    left_ctr = Counter()
    right_ctr = Counter(A)
    left_dup_flag = False
    right_dup_nums = set()
    for n, v in right_ctr.items():
        if v > 1:
            right_dup_nums.add(n)

    ans = []
    for idx in range(N - 1):
        move_n = A[idx]
        right_ctr[move_n] -= 1
        if right_ctr[move_n] == 1:
            right_dup_nums.remove(move_n)
        if left_ctr[move_n] > 0:
            left_dup_flag = True
        left_ctr[move_n] += 1
        if not left_dup_flag and not right_dup_nums:
            ans.append(idx)
    print(len(ans))
    print(*map(lambda n: n + 1, ans))


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