結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー NakamuraNakamura
提出日時 2023-07-01 13:49:16
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 73,416 KB
最終ジャッジ日時 2024-07-08 00:11:26
合計ジャッジ時間 4,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
39,040 KB
testcase_01 AC 51 ms
38,784 KB
testcase_02 AC 52 ms
39,168 KB
testcase_03 AC 52 ms
38,912 KB
testcase_04 AC 50 ms
38,784 KB
testcase_05 AC 52 ms
39,168 KB
testcase_06 AC 52 ms
39,168 KB
testcase_07 AC 230 ms
44,672 KB
testcase_08 AC 99 ms
52,144 KB
testcase_09 AC 135 ms
58,116 KB
testcase_10 AC 262 ms
69,396 KB
testcase_11 AC 262 ms
69,672 KB
testcase_12 AC 265 ms
70,076 KB
testcase_13 AC 279 ms
70,640 KB
testcase_14 AC 279 ms
70,908 KB
testcase_15 AC 283 ms
71,380 KB
testcase_16 AC 298 ms
73,416 KB
testcase_17 AC 55 ms
39,040 KB
testcase_18 AC 52 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const main = input => {
	const lines = input.trim().split('\n');
	const N = Number(lines[0].trim());
	const A = lines[1].trim().split(' ').map(n => BigInt(n));
	
	const ans = String(A.reduce((a, b) => a + b));
	console.log(ans);
}

const input = require('fs').readFileSync('/dev/stdin', 'utf8');
main(input);
0