結果

問題 No.143 豆
ユーザー splash9494splash9494
提出日時 2020-05-03 02:06:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,188 KB
最終ジャッジ日時 2024-06-10 17:29:31
合計ジャッジ時間 1,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,024 KB
testcase_01 AC 32 ms
52,532 KB
testcase_02 AC 33 ms
53,188 KB
testcase_03 AC 32 ms
52,732 KB
testcase_04 AC 32 ms
51,872 KB
testcase_05 AC 34 ms
52,360 KB
testcase_06 AC 36 ms
52,300 KB
testcase_07 AC 35 ms
52,644 KB
testcase_08 AC 33 ms
52,640 KB
testcase_09 WA -
testcase_10 AC 32 ms
52,400 KB
testcase_11 AC 40 ms
52,404 KB
testcase_12 AC 32 ms
52,952 KB
testcase_13 AC 36 ms
52,708 KB
testcase_14 AC 35 ms
53,124 KB
testcase_15 AC 36 ms
52,068 KB
testcase_16 AC 35 ms
51,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

res = (K * N) - sum(a)
print(res if res > 0 else -1)
0