結果
問題 | No.369 足し間違い |
ユーザー |
![]() |
提出日時 | 2020-05-03 12:28:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 202 bytes |
コンパイル時間 | 1,286 ms |
コンパイル使用メモリ | 165,340 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 19:15:25 |
合計ジャッジ時間 | 1,722 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n, s; s = 0; cin >> n; for (int i = 0; i < n; i++) { int x; cin >> x; s += x; } int v; cin >> v; cout << s - v << endl; }