結果

問題 No.143 豆
ユーザー akanayaakanaya
提出日時 2020-03-20 17:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 169 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-07-23 11:26:49
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,084 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 38 ms
53,744 KB
testcase_04 AC 36 ms
51,876 KB
testcase_05 AC 38 ms
53,260 KB
testcase_06 AC 38 ms
52,420 KB
testcase_07 AC 38 ms
52,128 KB
testcase_08 AC 37 ms
52,460 KB
testcase_09 AC 37 ms
51,872 KB
testcase_10 AC 38 ms
52,356 KB
testcase_11 AC 37 ms
52,360 KB
testcase_12 AC 38 ms
52,340 KB
testcase_13 AC 38 ms
51,824 KB
testcase_14 AC 38 ms
52,948 KB
testcase_15 AC 37 ms
52,620 KB
testcase_16 AC 37 ms
51,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k, n, f = list(map(int, input().split(' ')))

ages = sum(list(map(int, input().split(' '))))
beans = k * n

if beans < ages:
    print(-1)
else:
    print(beans - ages)
0