結果
問題 |
No.143 豆
|
ユーザー |
![]() |
提出日時 | 2018-09-13 00:24:28 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 56,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 04:33:25 |
合計ジャッジ時間 | 1,192 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 11 |
ソースコード
#include <iostream> #include <string> using namespace std; #define p(x) cout << x << endl; #define el cout << endl; int main(){ cin.tie(0); ios::sync_with_stdio(false); int K, N, F; cin >> K >> N >> F; int A[F]; for(int i = 0; i < F; ++i){ cin >> A[i]; } int beans = K * N; int sum = 0; for(int i = 0; i < F; ++i){ sum += A[i]; } int ans = 0; if (beans < sum){ p(-1); }else{ ans = beans - ans; p(ans); } }