結果

問題 No.143 豆
ユーザー sinofsevensinofseven
提出日時 2020-03-27 17:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-07-23 11:28:16
合計ジャッジ時間 1,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,280 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 38 ms
52,180 KB
testcase_03 AC 37 ms
51,936 KB
testcase_04 AC 37 ms
53,192 KB
testcase_05 AC 36 ms
52,876 KB
testcase_06 AC 38 ms
52,208 KB
testcase_07 AC 38 ms
52,072 KB
testcase_08 AC 36 ms
52,952 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
53,428 KB
testcase_11 AC 37 ms
53,196 KB
testcase_12 AC 38 ms
51,816 KB
testcase_13 AC 37 ms
52,908 KB
testcase_14 AC 37 ms
52,976 KB
testcase_15 AC 37 ms
52,324 KB
testcase_16 AC 36 ms
51,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

sack, rate, _ = map(int, input().split(' '))
need = sum(map(int, input().split(' ')))

amount = sack * rate

remain = amount - need

print(max(remain, -1))
0