結果

問題 No.888 約数の総和
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-10-22 10:30:35
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 45,568 KB
最終ジャッジ日時 2024-07-02 18:02:26
合計ジャッジ時間 7,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 88 ms
11,904 KB
testcase_07 AC 88 ms
12,032 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 90 ms
12,032 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 90 ms
12,032 KB
testcase_14 AC 89 ms
12,032 KB
testcase_15 AC 88 ms
12,032 KB
testcase_16 AC 92 ms
12,032 KB
testcase_17 AC 89 ms
12,160 KB
testcase_18 AC 350 ms
45,568 KB
testcase_19 AC 287 ms
37,504 KB
testcase_20 AC 226 ms
26,704 KB
testcase_21 AC 348 ms
44,544 KB
testcase_22 AC 349 ms
45,312 KB
testcase_23 AC 97 ms
12,928 KB
testcase_24 AC 196 ms
26,880 KB
testcase_25 AC 223 ms
25,892 KB
testcase_26 AC 226 ms
26,508 KB
testcase_27 AC 286 ms
37,888 KB
testcase_28 AC 297 ms
39,040 KB
testcase_29 AC 303 ms
39,424 KB
testcase_30 AC 307 ms
40,192 KB
testcase_31 AC 328 ms
42,880 KB
testcase_32 AC 351 ms
45,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
puts [
  1,
  *2.upto(Math.sqrt(N).floor).map { |n|
    next 0 unless (N % n).zero?
    n**2 == N ? n : [n, N / n]
  }.flatten,
  N
].inject(:+)
0