結果
問題 | No.2 素因数ゲーム |
ユーザー | 鶴田浩之 |
提出日時 | 2020-04-14 14:40:40 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 1,987 ms |
コンパイル使用メモリ | 30,996 KB |
実行使用メモリ | 31,660 KB |
最終ジャッジ日時 | 2024-10-01 17:00:00 |
合計ジャッジ時間 | 4,549 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 42 ms
31,028 KB |
testcase_04 | AC | 44 ms
31,228 KB |
testcase_05 | WA | - |
testcase_06 | AC | 42 ms
31,148 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 43 ms
30,920 KB |
testcase_10 | AC | 44 ms
31,584 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 43 ms
31,488 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | AC | 43 ms
30,984 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $N = trim(fgets(STDIN)); // 2<= $N <= 100000000 for ($i = 2; $i < 10000; $i++) { if (!($N % $i)) { $j = 0; while ($N % $i) { $N = $N/$i; $j++; } $arrays[] = $j; } } $one = 0; foreach ($arrays as $array) { if ($array = 1) { $one++; } } $twomore = count($arrays) - $one; if ($twomore % 2) { echo "Alice\n"; } else if ($twomore >= 4) { echo "Bob\n"; } else if ($twomore = 2) { if ($arrays[0] == $arrays[1]) { echo "Bob\n"; } else { echo "Alice\n"; } } else if ($twomore = 1) { if ($arrays[0] % 2) { echo "Alice\n"; } else { echo "Bob\n"; } } ?>