結果
問題 | No.1389 Clumsy Calculation |
ユーザー | chacoder1 |
提出日時 | 2021-02-12 21:45:55 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 1,837 ms |
コンパイル使用メモリ | 191,216 KB |
最終ジャッジ日時 | 2025-01-18 18:16:54 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<n;i++) int main(){ int n,x; cin>>n>>x; int sum=0; rep(i,n){ int temp; cin>>temp; sum+=(x-temp); } cout<<x-sum<<endl; return 0; }