結果

問題 No.2334 Distinct Cards
ユーザー NPNP
提出日時 2023-06-03 15:21:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 75,620 KB
最終ジャッジ日時 2024-06-09 03:36:49
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,216 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,556 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,584 KB
testcase_06 AC 38 ms
52,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,724 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,556 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 61 ms
72,780 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 65 ms
75,232 KB
testcase_18 AC 63 ms
74,932 KB
testcase_19 AC 64 ms
75,620 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 52 ms
66,116 KB
testcase_23 AC 37 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split());print(len(set(input().split()))-n+k)
0