結果

問題 No.414 衝動
ユーザー kkkk
提出日時 2016-10-31 11:25:54
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 128 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 26,192 KB
最終ジャッジ日時 2024-11-24 23:58:35
合計ジャッジ時間 22,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

M = gets.to_i

    for i in 2..M-1 do
        result =  "#{M/i},#{i}" if M % i == 0
    end

    puts result ? result : "#{M} 1"
0