結果

問題 No.278 連続する整数の和(2)
ユーザー 小指が強い人小指が強い人
提出日時 2015-11-08 14:26:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-02 11:52:26
合計ジャッジ時間 2,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 160 ms
12,032 KB
testcase_03 AC 74 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 188 ms
12,160 KB
testcase_09 AC 154 ms
12,160 KB
testcase_10 AC 178 ms
12,288 KB
testcase_11 AC 182 ms
12,288 KB
testcase_12 AC 73 ms
12,032 KB
testcase_13 AC 171 ms
12,032 KB
testcase_14 AC 127 ms
12,160 KB
testcase_15 AC 155 ms
12,160 KB
testcase_16 AC 143 ms
12,032 KB
testcase_17 AC 157 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
sn = n * (n - 1) / 2
t = Math.sqrt(n).to_i
res = 0
t.times do |x|
    x += 1
    if n % x != 0 then
        next
    end
    if sn % x == 0 then
        res += x
    end
    ax = n / x
    if ax != x && sn % ax == 0 then
        res += ax
    end
end
puts res
0