結果

問題 No.888 約数の総和
ユーザー Takuya-AmpiTakuya-Ampi
提出日時 2020-03-31 04:35:39
言語 JavaScript
(node v21.7.1)
結果
TLE  
実行時間 -
コード長 462 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 50,464 KB
最終ジャッジ日時 2024-10-13 01:39:11
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
48,852 KB
testcase_01 AC 75 ms
42,176 KB
testcase_02 AC 78 ms
44,160 KB
testcase_03 AC 73 ms
41,916 KB
testcase_04 AC 74 ms
39,936 KB
testcase_05 AC 71 ms
42,040 KB
testcase_06 AC 67 ms
40,192 KB
testcase_07 AC 73 ms
40,320 KB
testcase_08 AC 73 ms
43,904 KB
testcase_09 AC 75 ms
45,760 KB
testcase_10 AC 75 ms
45,800 KB
testcase_11 AC 75 ms
45,804 KB
testcase_12 AC 75 ms
44,288 KB
testcase_13 AC 78 ms
45,932 KB
testcase_14 AC 79 ms
43,904 KB
testcase_15 AC 82 ms
44,160 KB
testcase_16 AC 86 ms
44,288 KB
testcase_17 AC 83 ms
46,020 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

const reader = require("readline").createInterface({
  input: process.stdin,
  output: process.stdout
});
let lines = [];
reader.on("line", line => {
  lines.push(line);
});
reader.on("close", () => {
  const number = parseInt(lines[0])
  const results = []
  const divisor = (num) => {
    for (let i = 1; i <= num; i++) {
      if (num % i === 0) {
        results.push(i)
      }
    }
  }
  divisor(number)
  console.log(results.reduce((a, c) => a + c))
});
0