結果
問題 |
No.143 豆
|
ユーザー |
|
提出日時 | 2019-09-05 21:38:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 486 bytes |
コンパイル時間 | 1,468 ms |
コンパイル使用メモリ | 165,732 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 11:18:43 |
合計ジャッジ時間 | 2,123 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
/** @file 143.cpp @title No.143 豆 - yukicoder @url https://yukicoder.me/problems/no/143 **/ #include <bits/stdc++.h> using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int K, N, F; cin >> K >> N >> F; int A; LL ans = K * N; REP(i, F) { cin >> A; ans -= A; } if (ans < 0) { cout << "-1" << endl; } else { cout << ans << endl; } return 0; }