結果

問題 No.143 豆
ユーザー shakayamishakayami
提出日時 2023-02-09 03:48:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 93 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,280 KB
最終ジャッジ日時 2024-07-06 10:59:55
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,484 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 35 ms
52,964 KB
testcase_03 AC 32 ms
51,744 KB
testcase_04 AC 34 ms
53,108 KB
testcase_05 AC 31 ms
53,280 KB
testcase_06 AC 30 ms
52,976 KB
testcase_07 AC 32 ms
52,088 KB
testcase_08 AC 32 ms
51,988 KB
testcase_09 AC 32 ms
52,216 KB
testcase_10 AC 31 ms
52,372 KB
testcase_11 AC 32 ms
52,516 KB
testcase_12 AC 35 ms
52,612 KB
testcase_13 AC 32 ms
52,304 KB
testcase_14 AC 32 ms
52,536 KB
testcase_15 AC 32 ms
53,028 KB
testcase_16 AC 33 ms
51,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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