結果
問題 | No.143 豆 |
ユーザー |
![]() |
提出日時 | 2016-02-14 15:39:58 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 652 ms |
コンパイル使用メモリ | 54,396 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 10:26:40 |
合計ジャッジ時間 | 1,077 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include <iostream> using namespace std; int main() { int k, n, f, ans; cin >> k >> n >> f; ans = k * n; for (int i = 0; i < f; i++) { int a; cin >> a; ans -= a; } ans = max(ans,-1); cout << ans << endl; return 0; }