結果

問題 No.888 約数の総和
ユーザー jp_stejp_ste
提出日時 2020-05-12 22:52:24
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 45,052 KB
最終ジャッジ日時 2024-10-13 01:52:24
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
39,040 KB
testcase_01 AC 66 ms
39,168 KB
testcase_02 AC 63 ms
39,040 KB
testcase_03 WA -
testcase_04 AC 59 ms
39,040 KB
testcase_05 WA -
testcase_06 AC 61 ms
39,168 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 63 ms
39,296 KB
testcase_10 WA -
testcase_11 AC 60 ms
38,912 KB
testcase_12 AC 61 ms
39,168 KB
testcase_13 AC 61 ms
39,168 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 59 ms
39,296 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 148 ms
44,916 KB
testcase_20 WA -
testcase_21 AC 175 ms
44,800 KB
testcase_22 AC 172 ms
44,800 KB
testcase_23 WA -
testcase_24 AC 105 ms
44,404 KB
testcase_25 WA -
testcase_26 AC 124 ms
44,668 KB
testcase_27 AC 148 ms
44,416 KB
testcase_28 AC 155 ms
44,536 KB
testcase_29 WA -
testcase_30 AC 156 ms
44,532 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  let N = BigInt(input.shift());
  let sum = 0n;
  for(let i=1n; i*i<=N; i++) {
    if(N % i == 0n) {
      sum += i;
      sum += N / i;
    }
  }
  console.log(sum.toString());
}

main(require("fs").readFileSync("/dev/stdin", "utf8").trim().split("\n"));
0