結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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:17:12: warning: ‘sum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   17 |         sum+=A;
      |         ~~~^~~

ソースコード

diff #

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

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