結果

問題 No.2 素因数ゲーム
ユーザー finefine
提出日時 2016-03-30 01:00:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 11,180 KB
実行使用メモリ 15,380 KB
最終ジャッジ日時 2023-08-27 04:27:04
合計ジャッジ時間 4,404 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
15,204 KB
testcase_01 AC 93 ms
15,072 KB
testcase_02 AC 93 ms
15,296 KB
testcase_03 AC 96 ms
15,060 KB
testcase_04 AC 95 ms
15,064 KB
testcase_05 AC 94 ms
15,120 KB
testcase_06 AC 93 ms
15,328 KB
testcase_07 AC 93 ms
15,324 KB
testcase_08 AC 92 ms
15,320 KB
testcase_09 AC 93 ms
15,168 KB
testcase_10 AC 96 ms
15,196 KB
testcase_11 AC 92 ms
15,360 KB
testcase_12 AC 93 ms
15,172 KB
testcase_13 AC 94 ms
15,140 KB
testcase_14 AC 94 ms
15,204 KB
testcase_15 AC 94 ms
15,364 KB
testcase_16 AC 95 ms
15,160 KB
testcase_17 AC 95 ms
15,108 KB
testcase_18 AC 95 ms
15,324 KB
testcase_19 AC 94 ms
15,360 KB
testcase_20 AC 95 ms
15,272 KB
testcase_21 AC 97 ms
15,296 KB
testcase_22 AC 94 ms
15,200 KB
testcase_23 AC 94 ms
15,276 KB
testcase_24 AC 94 ms
15,320 KB
testcase_25 AC 93 ms
15,252 KB
testcase_26 AC 94 ms
15,164 KB
testcase_27 AC 95 ms
15,160 KB
testcase_28 AC 93 ms
15,104 KB
testcase_29 AC 94 ms
15,172 KB
testcase_30 AC 94 ms
15,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

n = gets.to_i
a = Prime.prime_division(n).map{|a|a[1]}
c = 0
while a.any?{|x|x != 0}
    f = false
    a.size.times{|i|
        a[i].times{|j|
            tmp = a[i]
            a[i] = j
            if a.inject(:^) == 0
                f = true
                break
            end
            a[i] = tmp
            }
        if f
            break
        end
        }
    if !f
        break
    end
    c += 1
end
if c % 2 == 0
    puts 'Bob'
else
    puts 'Alice'
end
0