結果

問題 No.2334 Distinct Cards
ユーザー Ekiben542Ekiben542
提出日時 2023-06-03 15:21:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 87,172 KB
実行使用メモリ 86,392 KB
最終ジャッジ日時 2023-08-28 07:56:12
合計ジャッジ時間 3,446 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
71,348 KB
testcase_02 WA -
testcase_03 AC 68 ms
71,448 KB
testcase_04 WA -
testcase_05 AC 68 ms
71,392 KB
testcase_06 AC 68 ms
71,132 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 69 ms
71,456 KB
testcase_10 WA -
testcase_11 AC 68 ms
71,244 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 92 ms
83,424 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 95 ms
86,088 KB
testcase_18 AC 92 ms
86,392 KB
testcase_19 AC 91 ms
86,160 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 81 ms
78,800 KB
testcase_23 AC 67 ms
71,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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