結果
問題 | No.369 足し間違い |
ユーザー | はむこ |
提出日時 | 2016-05-13 22:21:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,106 bytes |
コンパイル時間 | 1,178 ms |
コンパイル使用メモリ | 161,208 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 16:39:19 |
合計ジャッジ時間 | 1,634 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(long long i = 0; i < (long long)(n); i++) #define pb push_back #define all(x) (x).begin(), (x).end() template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); } template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template <typename T, typename U> ostream &operator<<(ostream &o, const pair<T, U> &v) { o << "(" << v.first << ", " << v.second << ")"; return o; } template <typename T> ostream &operator<<(ostream &o, const vector<T> &v) { if (!v.empty()) { o << '['; copy(v.begin(), v.end(), ostream_iterator<T>(o, ", ")); o << "\b\b]"; } return o; } using ll = long long; using ld = long double; using vll = vector<ll>; using vld = vector<ld>; typedef pair<ll, ll> P; static const double EPS = 1e-14; static const long long INF = 1e18; #define MAX_N 100005 int main(void) { cin.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; vll a(n); rep(i, a.size()) cin >> a[i]; ll m; cin >> m; cout << accumulate(all(a), (ll)0) - m << endl; return 0; }