結果

問題 No.143 豆
ユーザー ABKZABKZ
提出日時 2021-06-11 12:14:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 53,228 KB
最終ジャッジ日時 2024-12-14 06:56:44
合計ジャッジ時間 1,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,872 KB
testcase_01 AC 39 ms
52,748 KB
testcase_02 AC 39 ms
52,688 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,056 KB
testcase_05 AC 40 ms
52,088 KB
testcase_06 AC 39 ms
52,844 KB
testcase_07 AC 39 ms
52,332 KB
testcase_08 AC 40 ms
52,408 KB
testcase_09 AC 39 ms
52,852 KB
testcase_10 AC 39 ms
52,680 KB
testcase_11 AC 40 ms
52,612 KB
testcase_12 AC 40 ms
52,008 KB
testcase_13 AC 40 ms
52,800 KB
testcase_14 AC 39 ms
51,824 KB
testcase_15 AC 39 ms
52,488 KB
testcase_16 AC 39 ms
53,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K, N, F = map(int, input().split())
A = map(int, input().split())

surplus = K * N - sum(A)

print(surplus if surplus >= 0 else -1)
0