結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー intercept6intercept6
提出日時 2020-07-16 09:55:24
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 222 ms / 3,000 ms
コード長 438 bytes
コンパイル時間 7,983 ms
コンパイル使用メモリ 230,024 KB
実行使用メモリ 60,168 KB
最終ジャッジ日時 2024-12-31 16:15:26
合計ジャッジ時間 11,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
39,168 KB
testcase_01 AC 60 ms
39,424 KB
testcase_02 AC 60 ms
39,296 KB
testcase_03 AC 62 ms
39,552 KB
testcase_04 AC 61 ms
39,424 KB
testcase_05 AC 63 ms
39,296 KB
testcase_06 AC 63 ms
39,296 KB
testcase_07 AC 70 ms
41,088 KB
testcase_08 AC 101 ms
53,340 KB
testcase_09 AC 139 ms
56,424 KB
testcase_10 AC 198 ms
54,820 KB
testcase_11 AC 212 ms
59,148 KB
testcase_12 AC 216 ms
58,952 KB
testcase_13 AC 222 ms
59,524 KB
testcase_14 AC 195 ms
55,112 KB
testcase_15 AC 193 ms
55,300 KB
testcase_16 AC 210 ms
60,168 KB
testcase_17 AC 61 ms
39,296 KB
testcase_18 AC 60 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import { readFileSync } from 'fs';

function Main(input: string) {
  // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。

  const data = input.split('\n');

  const num = Number(data[0].split(' '));

  let res = 0n;
  for (let i = 0; i < num; i++) {
    res += BigInt(data[i + 1]);
  }

  console.log(String(res));
}

Main(readFileSync('/dev/stdin', 'utf8'));
0