結果

問題 No.182 新規性の虜
ユーザー IHIH
提出日時 2021-01-13 00:04:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 121 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 133,876 KB
最終ジャッジ日時 2024-05-01 10:01:46
合計ジャッジ時間 10,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,316 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
x = 0
for i in range(n):
  if a.count(a[i]) == 0:
    x += 1
print(x)
0