結果

問題 No.143 豆
ユーザー shakayamishakayami
提出日時 2023-02-09 03:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 93 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-07-06 11:00:47
合計ジャッジ時間 1,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,920 KB
testcase_01 AC 36 ms
52,416 KB
testcase_02 AC 34 ms
52,000 KB
testcase_03 AC 38 ms
51,580 KB
testcase_04 AC 34 ms
52,380 KB
testcase_05 AC 32 ms
52,644 KB
testcase_06 AC 33 ms
51,752 KB
testcase_07 AC 33 ms
52,892 KB
testcase_08 AC 33 ms
52,620 KB
testcase_09 AC 33 ms
53,720 KB
testcase_10 AC 34 ms
51,980 KB
testcase_11 AC 34 ms
53,348 KB
testcase_12 AC 33 ms
52,588 KB
testcase_13 AC 32 ms
52,548 KB
testcase_14 AC 32 ms
52,684 KB
testcase_15 AC 33 ms
51,800 KB
testcase_16 AC 32 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K,N,F=map(int,input().split())
A=sum([int(i) for i in input().split()])
print(max(K*N-A,-1))
0