結果

問題 No.2 素因数ゲーム
ユーザー CrazyBBBCrazyBBB
提出日時 2016-03-05 19:06:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 78,264 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-06-08 00:23:05
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,232 KB
testcase_01 AC 102 ms
40,232 KB
testcase_02 AC 112 ms
41,060 KB
testcase_03 AC 114 ms
41,116 KB
testcase_04 AC 113 ms
41,232 KB
testcase_05 AC 101 ms
40,080 KB
testcase_06 AC 108 ms
40,892 KB
testcase_07 AC 106 ms
41,248 KB
testcase_08 AC 101 ms
40,100 KB
testcase_09 AC 107 ms
40,812 KB
testcase_10 AC 107 ms
41,028 KB
testcase_11 AC 100 ms
40,292 KB
testcase_12 AC 109 ms
41,020 KB
testcase_13 AC 99 ms
40,028 KB
testcase_14 AC 111 ms
39,636 KB
testcase_15 AC 97 ms
40,280 KB
testcase_16 AC 106 ms
41,172 KB
testcase_17 AC 95 ms
40,256 KB
testcase_18 AC 104 ms
40,952 KB
testcase_19 AC 106 ms
41,168 KB
testcase_20 AC 96 ms
40,236 KB
testcase_21 AC 105 ms
40,912 KB
testcase_22 AC 103 ms
41,108 KB
testcase_23 AC 106 ms
41,112 KB
testcase_24 AC 112 ms
40,968 KB
testcase_25 AC 100 ms
40,156 KB
testcase_26 AC 105 ms
41,248 KB
testcase_27 AC 104 ms
39,896 KB
testcase_28 AC 107 ms
41,068 KB
testcase_29 AC 101 ms
39,940 KB
testcase_30 AC 114 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	static int[] S;
	static int[] T;
	static int[] Y;
	static int[] M;
	static int[][] dp;
	static final int INF = Integer.MAX_VALUE/2;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();

		List<Integer> list = new ArrayList<>();

		if (N == 1) {
			list.add(1);
		} else {
			int x = N;
			for (int i=2; i*i<=N; i++) {
				int cnt = 0;
				while (x%i==0) {
					cnt++;
					x/=i;
				}
				if (cnt!=0) {
					list.add(cnt);
				}
			}
			if (x!=1) {
				list.add(1);
			}
		}

		int tmp = 0;
		for (int i=0; i<list.size(); i++) {
			tmp ^= list.get(i);
		}

		if (tmp == 0) {
			System.out.println("Bob");
		} else {
			System.out.println("Alice");
		}

		sc.close();
	}
}
0