結果
問題 | No.369 足し間違い |
ユーザー | hiyokko2 |
提出日時 | 2017-08-09 11:25:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 1,825 ms |
コンパイル使用メモリ | 158,088 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 03:53:06 |
合計ジャッジ時間 | 2,489 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:21:19: warning: ‘v’ is used uninitialized [-Wuninitialized] 21 | cout << sum - v << endl; | ^
ソースコード
#include <bits/stdc++.h> #define FOR(i,bg,ed) for(ll i=(bg);i<(ed);i++) #define REP(i,n) FOR(i,0,n) #define MOD 1000000007 #define int long long using namespace std; typedef long long ll; const int INF = 1e9; signed main() { int N, A, sum = 0, v; cin >> N; REP(i,N) { cin >> A; sum += A; } cout << sum - v << endl; }