結果

問題 No.369 足し間違い
ユーザー hiyokko2hiyokko2
提出日時 2017-08-09 11:25:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 158,184 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-20 08:30:43
合計ジャッジ時間 2,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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;
      |                   ^

ソースコード

diff #

#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;
}
0