結果

問題 No.143 豆
ユーザー mahiromahiro
提出日時 2020-01-11 17:53:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 123 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 53,908 KB
最終ジャッジ日時 2024-07-23 11:23:55
合計ジャッジ時間 1,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,844 KB
testcase_01 AC 36 ms
53,092 KB
testcase_02 AC 37 ms
53,908 KB
testcase_03 AC 36 ms
52,260 KB
testcase_04 AC 37 ms
52,644 KB
testcase_05 AC 37 ms
52,220 KB
testcase_06 AC 38 ms
52,892 KB
testcase_07 AC 37 ms
53,264 KB
testcase_08 AC 37 ms
53,148 KB
testcase_09 AC 37 ms
53,084 KB
testcase_10 AC 37 ms
52,760 KB
testcase_11 AC 36 ms
52,148 KB
testcase_12 AC 37 ms
53,116 KB
testcase_13 AC 37 ms
52,768 KB
testcase_14 AC 37 ms
53,724 KB
testcase_15 AC 38 ms
52,936 KB
testcase_16 AC 37 ms
53,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K, N, F = [int(i) for i in input().split()]
A = [int(i) for i in input().split()]

ans = max(K * N - sum(A), -1)
print(ans)
0