結果
問題 |
No.143 豆
|
ユーザー |
![]() |
提出日時 | 2019-09-02 11:24:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 507 ms |
コンパイル使用メモリ | 62,948 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 11:18:47 |
合計ジャッジ時間 | 1,189 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include <iostream> using namespace std; int main() { int k,n,f,t,sum=0; cin>>k>>n>>f; for(int i=0;i<f;i++){ cin>>t; sum+=t; } t=k*n-sum; if(t<0)t=-1; cout<<t<<endl; return 0; }