結果

問題 No.414 衝動
ユーザー kkkk
提出日時 2016-10-31 11:40:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-11-25 00:00:55
合計ジャッジ時間 9,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 86 ms
12,160 KB
testcase_08 TLE -
testcase_09 WA -
testcase_10 AC 86 ms
12,288 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: possibly useless use of a variable in void context
Syntax OK

ソースコード

diff #

M = gets.to_i

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