結果
問題 | No.143 豆 |
ユーザー |
|
提出日時 | 2018-11-22 17:47:38 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 409 ms |
コンパイル使用メモリ | 54,116 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 11:06:08 |
合計ジャッジ時間 | 1,082 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int a, b, c, d, n, i, sum = 0; cin >> a >> b >> n; c = a * b; for (i=0; i<n; i++) { cin >> d; sum += d; } c -= sum; if (c < 0) { cout << -1 << endl; } else { cout << c << endl; } return 0; }