結果

問題 No.143 豆
ユーザー ktayaktaya
提出日時 2019-01-10 22:04:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 211 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2024-07-23 11:07:20
合計ジャッジ時間 1,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,812 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 36 ms
53,080 KB
testcase_03 AC 36 ms
51,836 KB
testcase_04 AC 36 ms
52,732 KB
testcase_05 AC 36 ms
53,288 KB
testcase_06 AC 36 ms
52,664 KB
testcase_07 AC 35 ms
53,220 KB
testcase_08 AC 36 ms
52,892 KB
testcase_09 AC 35 ms
53,012 KB
testcase_10 AC 36 ms
51,952 KB
testcase_11 AC 36 ms
52,320 KB
testcase_12 AC 36 ms
53,824 KB
testcase_13 AC 36 ms
52,984 KB
testcase_14 AC 36 ms
52,792 KB
testcase_15 AC 35 ms
52,684 KB
testcase_16 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k, n, f = input().split()
beans_total = int(k) * int(n)
years = [int(i) for i in input().split()]
years_total = sum(years)

if beans_total < years_total:
    print(-1)
else:
    print(beans_total - years_total)
0