結果

問題 No.182 新規性の虜
ユーザー wesoweeenwesoweeen
提出日時 2021-08-27 00:30:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,352 KB
最終ジャッジ日時 2024-11-18 23:36:32
合計ジャッジ時間 2,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 51 ms
19,516 KB
testcase_09 AC 72 ms
21,028 KB
testcase_10 AC 61 ms
20,048 KB
testcase_11 AC 56 ms
19,784 KB
testcase_12 AC 38 ms
15,404 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 55 ms
18,144 KB
testcase_19 AC 47 ms
16,248 KB
testcase_20 AC 39 ms
13,952 KB
testcase_21 AC 61 ms
19,216 KB
testcase_22 AC 43 ms
14,780 KB
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 69 ms
25,352 KB
testcase_25 AC 49 ms
12,732 KB
testcase_26 AC 30 ms
12,544 KB
testcase_27 AC 26 ms
10,496 KB
evil01.txt AC 72 ms
25,716 KB
evil02.txt AC 75 ms
25,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    for a in A:
        d[a] = a not in d
    print(sum(d.values()))


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