結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー iodo_shibaiodo_shiba
提出日時 2018-08-08 03:41:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 58,952 KB
実行使用メモリ 9,428 KB
最終ジャッジ日時 2023-10-19 23:06:06
合計ジャッジ時間 8,640 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:18: warning: ‘sum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   20 |     std::cout << sum << std::endl;
      |                  ^~~

ソースコード

diff #

#include<iostream>
#include<sstream>
#include<string>

int main(){
    std::string line;
    getline(std::cin,line);
    std::istringstream iss(line);
    int N;
    iss >> N;
    std::cout << N << std::endl;
    getline(std::cin,line);
    int sum;
    for(int i=0;i<N;i++){
        std::istringstream irdiss(line);
        int A;
        irdiss>>A;
        sum+=A;
    }
    std::cout << sum << std::endl;
    return 0;
}
0