結果

問題 No.414 衝動
ユーザー kkkk
提出日時 2016-10-31 11:39:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 207 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-11-24 23:59:55
合計ジャッジ時間 8,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
18,976 KB
testcase_01 AC 86 ms
24,320 KB
testcase_02 AC 85 ms
18,848 KB
testcase_03 AC 177 ms
24,320 KB
testcase_04 AC 86 ms
18,980 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 89 ms
12,032 KB
testcase_08 TLE -
testcase_09 AC 176 ms
12,160 KB
testcase_10 AC 89 ms
12,032 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 89 ms
24,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M = gets.to_i

    def get_divisor(d)
        for i in 2..d-1 do
            if d % i == 0
                return i
            end
        end
        1
    end
    d = get_divisor(M)
    puts "#{M/d} #{d}"
0