結果

問題 No.182 新規性の虜
ユーザー shika_126shika_126
提出日時 2022-03-24 16:36:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 23,428 KB
最終ジャッジ日時 2024-10-13 00:48:04
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 52 ms
17,864 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 26 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 70 ms
23,428 KB
testcase_25 AC 57 ms
12,488 KB
testcase_26 AC 33 ms
12,544 KB
testcase_27 AC 28 ms
10,624 KB
evil01.txt AC 76 ms
23,588 KB
evil02.txt AC 75 ms
23,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]
t = set(a)
al = len(a)
tl = len(t)
if n == 1:
    print(1)
elif tl == 1:
    print(0)
elif al == tl:
    print(al)
else:
    print(al-tl)
0