結果

問題 No.1389 Clumsy Calculation
ユーザー kumatakokumatako
提出日時 2021-02-26 19:26:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 170,048 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 11:56:03
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, n) for(ll i = 0; i < (ll)(n); ++i)
#define FOR(i, a, b) for(ll i=(a); i < (ll)(b); ++i)
template<class T> inline bool chmax(T& a, T b) { if(a < b){ a=b; return 1; } return 0;}
template<class T> inline bool chmin(T& a, T b) { if(a > b){ a=b; return 1; } return 0;}

int main(){
	ll n,x;
	cin >> n >> x;
	vector<ll> s(n);
	REP(i,n) cin >> s[i];
	
	ll sall=0;
	REP(i,n){
		sall += x - s[i];
	}
	
	cout << x - sall << endl;
	
	return 0;
}
0