結果
問題 | No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | iodo_shiba |
提出日時 | 2018-08-08 03:41:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 423 bytes |
コンパイル時間 | 457 ms |
コンパイル使用メモリ | 58,292 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-19 19:03:41 |
合計ジャッジ時間 | 8,134 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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; | ^~~
ソースコード
#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; }