結果

問題 No.143 豆
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 16:56:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 144 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-06-09 16:56:11
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,196 KB
testcase_01 AC 31 ms
52,984 KB
testcase_02 AC 30 ms
52,956 KB
testcase_03 AC 32 ms
52,312 KB
testcase_04 AC 32 ms
51,884 KB
testcase_05 AC 32 ms
52,948 KB
testcase_06 AC 33 ms
52,952 KB
testcase_07 AC 33 ms
53,092 KB
testcase_08 AC 32 ms
53,056 KB
testcase_09 AC 35 ms
52,320 KB
testcase_10 AC 31 ms
52,532 KB
testcase_11 AC 34 ms
52,216 KB
testcase_12 AC 33 ms
51,956 KB
testcase_13 AC 34 ms
52,136 KB
testcase_14 AC 33 ms
52,000 KB
testcase_15 AC 33 ms
53,088 KB
testcase_16 AC 33 ms
52,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k, n, f = map(int, input().split())
A = list(map(int, input().split()))
cnt = k * n
cnt -= sum(A)
if cnt < 0:
    print(-1)
else:
    print(cnt)
0