結果

問題 No.2 素因数ゲーム
ユーザー kano_townkano_town
提出日時 2014-12-20 22:31:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 3,932 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 56,168 KB
最終ジャッジ日時 2024-06-12 02:47:55
合計ジャッジ時間 8,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,960 KB
testcase_01 AC 121 ms
54,068 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 118 ms
53,844 KB
testcase_05 AC 118 ms
53,828 KB
testcase_06 AC 119 ms
54,120 KB
testcase_07 AC 118 ms
54,016 KB
testcase_08 AC 129 ms
54,128 KB
testcase_09 AC 118 ms
54,052 KB
testcase_10 AC 106 ms
53,128 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 125 ms
54,016 KB
testcase_16 AC 116 ms
53,796 KB
testcase_17 AC 109 ms
52,968 KB
testcase_18 WA -
testcase_19 AC 282 ms
53,188 KB
testcase_20 AC 246 ms
54,116 KB
testcase_21 AC 432 ms
54,056 KB
testcase_22 AC 135 ms
54,196 KB
testcase_23 AC 125 ms
54,096 KB
testcase_24 AC 121 ms
54,044 KB
testcase_25 AC 131 ms
53,940 KB
testcase_26 WA -
testcase_27 AC 102 ms
52,944 KB
testcase_28 AC 105 ms
53,012 KB
testcase_29 WA -
testcase_30 AC 119 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yukicoder02 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), res = 0, cnt;
		String[] s = {"Bob", "Alice"};
		for (int i = 2; i <= n; i++)
			if (n % i == 0) {
				n /= i;
				for (cnt = 0; n % i == 0; cnt++) n /= i;
				res += cnt > 2 ? 2 : 1;
			}
		System.out.println(s[res % 2]);
	}
}
0