結果

問題 No.143 豆
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 118 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,296 KB
最終ジャッジ日時 2024-12-17 15:04:43
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 37 ms
52,624 KB
testcase_02 AC 36 ms
51,624 KB
testcase_03 AC 38 ms
52,708 KB
testcase_04 AC 37 ms
52,236 KB
testcase_05 AC 38 ms
51,836 KB
testcase_06 AC 40 ms
52,772 KB
testcase_07 AC 36 ms
53,296 KB
testcase_08 AC 37 ms
52,280 KB
testcase_09 AC 36 ms
52,416 KB
testcase_10 AC 36 ms
51,964 KB
testcase_11 AC 38 ms
52,800 KB
testcase_12 AC 36 ms
52,600 KB
testcase_13 AC 37 ms
52,072 KB
testcase_14 AC 37 ms
52,544 KB
testcase_15 AC 37 ms
51,868 KB
testcase_16 AC 38 ms
52,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K,N,F=map(int,input().split())
A=list(map(int,input().split()))
ans=K*N-sum(A)
if ans>=0:
	print(ans)
else:
	print(-1)
0