結果
| 問題 |
No.143 豆
|
| コンテスト | |
| ユーザー |
knt3110
|
| 提出日時 | 2018-05-22 16:28:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 1,000 ms |
| コード長 | 187 bytes |
| コンパイル時間 | 99 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-07-23 10:59:20 |
| 合計ジャッジ時間 | 1,227 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 |
ソースコード
k,n,f=(int(i) for i in input().split())
a=[int(i) for i in input().split()]
total=k*n
sum=0
for i in range(f):
sum+=a[i]
sub=total-sum
if sub<0:
print(-1)
else:
print(sub)
knt3110