結果
問題 | No.143 豆 |
ユーザー | Koharu Aoki 🌏🦊🇯🇵 青木小春 |
提出日時 | 2024-03-17 11:07:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 141 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,828 KB |
実行使用メモリ | 54,312 KB |
最終ジャッジ日時 | 2024-09-30 04:40:20 |
合計ジャッジ時間 | 1,357 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,532 KB |
testcase_01 | WA | - |
testcase_02 | AC | 33 ms
52,140 KB |
testcase_03 | AC | 32 ms
53,092 KB |
testcase_04 | AC | 32 ms
53,320 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 33 ms
52,984 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 33 ms
53,620 KB |
testcase_14 | AC | 33 ms
52,028 KB |
testcase_15 | AC | 32 ms
52,780 KB |
testcase_16 | AC | 32 ms
53,144 KB |
ソースコード
K, N, F = (int(i) for i in input().split()) A = [int(i) for i in input().split() if int(i) <= N] print(K * N - sum(A) if len(A) <= F else -1)