結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー maimai
提出日時 2018-10-22 00:43:50
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 57,620 KB
最終ジャッジ日時 2024-10-13 00:51:21
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
40,192 KB
testcase_01 AC 74 ms
42,300 KB
testcase_02 AC 70 ms
40,192 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 128 ms
50,680 KB
testcase_10 AC 148 ms
54,900 KB
testcase_11 AC 141 ms
54,964 KB
testcase_12 AC 149 ms
55,660 KB
testcase_13 AC 144 ms
55,692 KB
testcase_14 AC 151 ms
57,620 KB
testcase_15 AC 153 ms
55,956 KB
testcase_16 AC 165 ms
57,468 KB
testcase_17 AC 68 ms
42,356 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

const cin = [];
const reader = require('readline').createInterface({
    input: process.stdin,
    output: process.stdout
});
reader.on('line', (line)=>{ cin.push(line); });
process.stdin.on('end', ()=>{main()});

Array.prototype.map_toInt = function(){ return this.map((e)=>+e); };

function main(){
    const N = +cin.shift();
    console.log(
        cin.shift().split(" ").map_toInt().reduce((s,e,i)=>(s+e))
    );
}
0