結果
| 問題 | No.143 豆 |
| コンテスト | |
| ユーザー |
MrEMGration
|
| 提出日時 | 2019-03-24 16:23:47 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
MLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 1,875 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 79,232 KB |
| 最終ジャッジ日時 | 2026-08-24 00:23:36 |
| 合計ジャッジ時間 | 3,838 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | MLE * 17 |
ソースコード
K,N,F=map(int,input().split())
mame=K*N
age=list(map(int,input().split()))
agesum=sum(age)
if agesum<=mame:
print(mame-agesum)
else:
print("-1")
MrEMGration