結果

問題 No.182 新規性の虜
ユーザー minezumuminezumu
提出日時 2018-07-23 19:30:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 23,432 KB
最終ジャッジ日時 2024-06-09 13:16:46
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 31 ms
10,368 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,368 KB
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 58 ms
17,864 KB
testcase_09 AC 77 ms
22,640 KB
testcase_10 AC 65 ms
18,424 KB
testcase_11 AC 59 ms
17,608 KB
testcase_12 AC 44 ms
15,724 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 30 ms
10,368 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 31 ms
10,368 KB
testcase_24 AC 72 ms
23,432 KB
testcase_25 AC 52 ms
12,476 KB
testcase_26 AC 36 ms
12,416 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 75 ms
23,488 KB
evil02.txt AC 78 ms
23,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = set(A)
a = len(A)
b = len(B)
if 2*b-a < 0 :
    print(0)
else :
    print(2*b-a)

0