結果

問題 No.143 豆
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-29 02:47:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 89 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-11-29 02:47:07
合計ジャッジ時間 1,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,612 KB
testcase_01 AC 34 ms
52,648 KB
testcase_02 AC 33 ms
52,064 KB
testcase_03 AC 33 ms
53,316 KB
testcase_04 AC 32 ms
52,152 KB
testcase_05 AC 34 ms
53,540 KB
testcase_06 AC 33 ms
53,496 KB
testcase_07 AC 31 ms
52,636 KB
testcase_08 AC 33 ms
53,688 KB
testcase_09 AC 37 ms
52,948 KB
testcase_10 AC 34 ms
52,972 KB
testcase_11 AC 35 ms
53,544 KB
testcase_12 AC 33 ms
53,192 KB
testcase_13 AC 33 ms
52,884 KB
testcase_14 AC 33 ms
53,076 KB
testcase_15 AC 32 ms
53,148 KB
testcase_16 AC 33 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k,n,f=map(int,input().split())
a=list(map(int,input().split()))
print(max(k*n-sum(a),-1))
0