結果

問題 No.182 新規性の虜
ユーザー トミートミー
提出日時 2024-03-30 21:04:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-09-30 17:45:36
合計ジャッジ時間 3,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
51,824 KB
testcase_03 AC 36 ms
52,092 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 68 ms
81,408 KB
testcase_09 AC 81 ms
94,272 KB
testcase_10 AC 76 ms
89,856 KB
testcase_11 AC 68 ms
84,096 KB
testcase_12 AC 52 ms
69,248 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 37 ms
52,352 KB
testcase_16 AC 37 ms
51,880 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 64 ms
77,952 KB
testcase_19 AC 61 ms
73,740 KB
testcase_20 AC 54 ms
68,608 KB
testcase_21 AC 67 ms
80,000 KB
testcase_22 AC 57 ms
70,400 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 82 ms
95,872 KB
testcase_25 AC 61 ms
78,976 KB
testcase_26 AC 46 ms
62,976 KB
testcase_27 AC 37 ms
51,840 KB
evil01.txt AC 87 ms
98,688 KB
evil02.txt AC 86 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n=int(input())
    a=list(map(int,input().split()))
    d={}
    for i in a:
        if i in d:
            d[i]+=1
        else:
            d[i]=1
    cnt=0
    for i in d:
        if d[i]==1:
            cnt+=1
    print(cnt)
            
    

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