結果

問題 No.182 新規性の虜
ユーザー ohanaohana
提出日時 2023-10-23 11:48:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 89,028 KB
最終ジャッジ日時 2024-09-22 10:02:58
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,184 KB
testcase_01 AC 37 ms
52,228 KB
testcase_02 AC 37 ms
51,888 KB
testcase_03 AC 39 ms
52,000 KB
testcase_04 AC 37 ms
52,216 KB
testcase_05 AC 38 ms
53,012 KB
testcase_06 AC 37 ms
52,740 KB
testcase_07 AC 38 ms
52,404 KB
testcase_08 AC 75 ms
82,628 KB
testcase_09 AC 87 ms
88,780 KB
testcase_10 AC 83 ms
86,532 KB
testcase_11 AC 73 ms
84,100 KB
testcase_12 AC 59 ms
77,676 KB
testcase_13 AC 36 ms
53,064 KB
testcase_14 AC 37 ms
52,892 KB
testcase_15 AC 37 ms
52,544 KB
testcase_16 AC 37 ms
54,172 KB
testcase_17 AC 37 ms
52,388 KB
testcase_18 AC 70 ms
82,660 KB
testcase_19 AC 64 ms
78,540 KB
testcase_20 AC 56 ms
73,260 KB
testcase_21 AC 75 ms
85,352 KB
testcase_22 AC 61 ms
75,716 KB
testcase_23 AC 37 ms
52,540 KB
testcase_24 AC 75 ms
89,028 KB
testcase_25 AC 61 ms
85,376 KB
testcase_26 AC 47 ms
67,780 KB
testcase_27 AC 37 ms
52,684 KB
evil01.txt AC 77 ms
90,452 KB
evil02.txt AC 77 ms
90,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
A = list(map(int, input().split()))
A.sort()
cnt = 0

for k, g in itertools.groupby(A):
    if len(list(g)) == 1:
        cnt += 1
print(cnt)
0