結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
4,348 KB
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 -- -
権限があれば一括ダウンロードができます

ソースコード

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=0;
    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