結果

問題 No.182 新規性の虜
ユーザー excnctexcnct
提出日時 2025-01-02 00:30:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 325 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 25,500 KB
最終ジャッジ日時 2025-01-02 00:30:46
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,112 KB
testcase_01 AC 31 ms
10,240 KB
testcase_02 AC 32 ms
10,368 KB
testcase_03 AC 32 ms
10,240 KB
testcase_04 AC 31 ms
10,112 KB
testcase_05 AC 31 ms
10,368 KB
testcase_06 AC 31 ms
10,112 KB
testcase_07 AC 32 ms
10,240 KB
testcase_08 AC 59 ms
18,936 KB
testcase_09 AC 80 ms
20,728 KB
testcase_10 AC 70 ms
20,460 KB
testcase_11 AC 64 ms
19,352 KB
testcase_12 AC 45 ms
15,092 KB
testcase_13 AC 31 ms
10,112 KB
testcase_14 AC 31 ms
10,240 KB
testcase_15 AC 30 ms
10,240 KB
testcase_16 AC 31 ms
10,240 KB
testcase_17 AC 31 ms
10,240 KB
testcase_18 AC 64 ms
17,532 KB
testcase_19 AC 53 ms
15,340 KB
testcase_20 AC 45 ms
13,416 KB
testcase_21 AC 67 ms
18,412 KB
testcase_22 AC 49 ms
14,172 KB
testcase_23 AC 32 ms
10,368 KB
testcase_24 AC 80 ms
25,500 KB
testcase_25 AC 56 ms
12,032 KB
testcase_26 AC 36 ms
11,648 KB
testcase_27 AC 32 ms
10,112 KB
evil01.txt AC 83 ms
25,196 KB
evil02.txt AC 89 ms
25,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    list_a = [int(i) for i in input().split(" ")]
    counts = {}
    for a in list_a:
        counts[a] = counts.get(a, 0) + 1

    ans_count = 0
    for count in counts.values():
        if count == 1:
            ans_count += 1

    print(ans_count)


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