結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
18,980 KB
testcase_01 AC 88 ms
24,448 KB
testcase_02 AC 89 ms
18,852 KB
testcase_03 AC 179 ms
24,576 KB
testcase_04 AC 91 ms
19,236 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 88 ms
12,288 KB
testcase_08 TLE -
testcase_09 AC 177 ms
12,160 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 90 ms
12,160 KB
testcase_12 AC 90 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