結果

問題 No.2 素因数ゲーム
ユーザー CrazyBBBCrazyBBB
提出日時 2016-03-05 19:02:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 78,732 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-24 14:25:42
合計ジャッジ時間 6,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,112 KB
testcase_01 AC 115 ms
54,100 KB
testcase_02 AC 117 ms
53,976 KB
testcase_03 AC 106 ms
52,556 KB
testcase_04 WA -
testcase_05 AC 121 ms
53,736 KB
testcase_06 AC 116 ms
54,128 KB
testcase_07 AC 110 ms
54,140 KB
testcase_08 WA -
testcase_09 AC 113 ms
53,976 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
54,256 KB
testcase_13 AC 117 ms
53,888 KB
testcase_14 AC 118 ms
54,100 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 116 ms
52,768 KB
testcase_18 AC 107 ms
52,748 KB
testcase_19 AC 119 ms
54,068 KB
testcase_20 WA -
testcase_21 AC 106 ms
52,996 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 116 ms
54,040 KB
testcase_27 AC 116 ms
54,096 KB
testcase_28 AC 104 ms
52,996 KB
testcase_29 AC 119 ms
54,112 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (list.isEmpty()) {
				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