結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,500 KB
testcase_01 AC 39 ms
52,972 KB
testcase_02 AC 39 ms
53,368 KB
testcase_03 AC 38 ms
52,448 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,260 KB
testcase_07 AC 40 ms
52,940 KB
testcase_08 AC 39 ms
52,236 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,492 KB
testcase_11 AC 36 ms
53,360 KB
testcase_12 AC 37 ms
52,536 KB
testcase_13 AC 37 ms
53,184 KB
testcase_14 AC 37 ms
53,496 KB
testcase_15 AC 39 ms
51,908 KB
testcase_16 AC 36 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

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