結果
問題 | No.143 豆 |
ユーザー |
![]() |
提出日時 | 2015-08-26 04:19:10 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 674 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 74,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 10:21:36 |
合計ジャッジ時間 | 1,394 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include <iostream> #include <cmath> #include <climits> #include <string> #include <vector> #include <functional> #include <algorithm> #include <sstream> #include <map> #include <set> #include <utility> #define endl '\n' #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) using namespace std; typedef pair<int,int> P; typedef long long int LL; int main() { ios::sync_with_stdio(false); cin.tie(0); int K,N,F; cin>>K>>N>>F; vector<int> A(F); REP(i,F) cin>>A[i]; int ans=K*N; REP(i,F){ ans-=A[i]; } if(ans<0){ cout<<-1<<endl; }else{ cout<<ans<<endl; } return 0; }