結果

問題 No.2 素因数ゲーム
ユーザー spaciaspacia
提出日時 2016-01-04 08:01:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 780 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 38,044 KB
最終ジャッジ日時 2024-06-08 00:16:02
合計ジャッジ時間 5,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,940 KB
testcase_01 AC 49 ms
36,556 KB
testcase_02 AC 49 ms
37,044 KB
testcase_03 AC 48 ms
36,744 KB
testcase_04 AC 49 ms
36,864 KB
testcase_05 AC 46 ms
37,036 KB
testcase_06 AC 46 ms
36,808 KB
testcase_07 AC 47 ms
37,032 KB
testcase_08 AC 67 ms
37,704 KB
testcase_09 AC 47 ms
36,808 KB
testcase_10 AC 49 ms
36,556 KB
testcase_11 AC 48 ms
36,928 KB
testcase_12 AC 48 ms
37,056 KB
testcase_13 AC 47 ms
36,784 KB
testcase_14 AC 49 ms
36,888 KB
testcase_15 AC 50 ms
37,028 KB
testcase_16 AC 49 ms
37,028 KB
testcase_17 AC 52 ms
36,932 KB
testcase_18 AC 47 ms
36,504 KB
testcase_19 AC 156 ms
37,740 KB
testcase_20 AC 125 ms
37,792 KB
testcase_21 AC 239 ms
37,952 KB
testcase_22 AC 68 ms
38,000 KB
testcase_23 AC 50 ms
36,872 KB
testcase_24 AC 51 ms
36,772 KB
testcase_25 AC 68 ms
38,044 KB
testcase_26 AC 48 ms
37,032 KB
testcase_27 AC 50 ms
36,500 KB
testcase_28 AC 48 ms
36,992 KB
testcase_29 AC 49 ms
36,968 KB
testcase_30 AC 50 ms
36,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		
		ArrayList<Integer> list = new ArrayList<Integer>();
		
		int cnt = 0;
		if (n % 2 == 0) {
			while (n % 2 == 0) {
				n /= 2;
				cnt++;
			}
			list.add(cnt);
		}
		
		for (int i = 3; i <= n; i += 2) {
			cnt = 0;
			if (n % i == 0) {
				while (n % i == 0) {
					n /= i;
					cnt++;
				}
				list.add(cnt);
			}
		}
		
		int ans = 0;
		for (int i = 0; i < list.size(); i++)
			ans ^= list.get(i);
		
		out(ans == 0 ? "Bob" : "Alice");
		
	}
}
0