結果
問題 | No.2 素因数ゲーム |
ユーザー | kazu |
提出日時 | 2019-03-18 16:26:13 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 470,556 KB |
最終ジャッジ日時 | 2024-07-18 10:57:45 |
合計ジャッジ時間 | 8,988 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
12,032 KB |
testcase_01 | WA | - |
testcase_02 | AC | 80 ms
12,288 KB |
testcase_03 | AC | 81 ms
12,160 KB |
testcase_04 | AC | 80 ms
12,160 KB |
testcase_05 | WA | - |
testcase_06 | AC | 82 ms
12,288 KB |
testcase_07 | WA | - |
testcase_08 | AC | 351 ms
34,560 KB |
testcase_09 | AC | 82 ms
12,288 KB |
testcase_10 | AC | 85 ms
12,288 KB |
testcase_11 | WA | - |
testcase_12 | AC | 80 ms
12,032 KB |
testcase_13 | WA | - |
testcase_14 | AC | 83 ms
12,160 KB |
testcase_15 | AC | 80 ms
12,160 KB |
testcase_16 | WA | - |
testcase_17 | AC | 112 ms
16,768 KB |
testcase_18 | AC | 80 ms
12,288 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 3,830 ms
294,400 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def func(num) args = [] ncount = 0 i = 2 while num > 1 args.push(0) while num % i == 0 num = num / i args[args.size-1] += 1 end if args.last > 1 ncount += 1 end i += 1 end if ncount == 0 if args.size % 2 == 1 print "Alice" else print "Bob" end else if ncount % 2 == 1 print "Alice" else print "Bob" end end print "\n" end func(gets.to_i)