結果
| 問題 |
No.143 豆
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-03 02:27:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 1,000 ms |
| コード長 | 173 bytes |
| コンパイル時間 | 118 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-23 11:30:50 |
| 合計ジャッジ時間 | 1,199 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 |
ソースコード
import sys input = sys.stdin.buffer.readline K, N, F = map(int, input().split()) a = list(map(int, input().split())) res = (K * N) - sum(a) print( res if res >= 0 else -1)
splash9494