結果

問題 No.2 素因数ゲーム
ユーザー kyawashellkyawashell
提出日時 2017-12-08 11:53:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,472 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 340,480 KB
最終ジャッジ日時 2024-06-08 00:49:15
合計ジャッジ時間 36,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,368 KB
testcase_01 AC 113 ms
41,260 KB
testcase_02 AC 117 ms
40,992 KB
testcase_03 AC 114 ms
39,808 KB
testcase_04 AC 108 ms
39,864 KB
testcase_05 AC 137 ms
41,812 KB
testcase_06 AC 315 ms
73,908 KB
testcase_07 AC 336 ms
82,288 KB
testcase_08 AC 323 ms
79,860 KB
testcase_09 AC 2,472 ms
340,480 KB
testcase_10 AC 2,106 ms
304,996 KB
testcase_11 AC 829 ms
152,840 KB
testcase_12 AC 840 ms
152,612 KB
testcase_13 AC 2,029 ms
286,440 KB
testcase_14 AC 248 ms
62,116 KB
testcase_15 AC 507 ms
111,408 KB
testcase_16 AC 1,441 ms
227,900 KB
testcase_17 AC 2,178 ms
309,784 KB
testcase_18 AC 2,310 ms
325,600 KB
testcase_19 AC 1,312 ms
218,528 KB
testcase_20 AC 1,794 ms
271,216 KB
testcase_21 AC 2,381 ms
333,812 KB
testcase_22 AC 2,170 ms
315,196 KB
testcase_23 AC 832 ms
156,316 KB
testcase_24 AC 2,338 ms
325,824 KB
testcase_25 AC 1,470 ms
215,484 KB
testcase_26 AC 1,152 ms
196,284 KB
testcase_27 AC 514 ms
113,704 KB
testcase_28 AC 1,363 ms
223,228 KB
testcase_29 AC 1,099 ms
191,256 KB
testcase_30 AC 853 ms
158,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	static void gethurui(boolean hurui[],int n){
		hurui[0] = hurui[1] = false;
		for(int i = 2;i <= n;i++)
			hurui[i] = true;
		for(int i = 2;i <= (int)(Math.sqrt(n) + 0.1);i++){
			if(!hurui[i])
				continue;
			for(int j = i * 2;j <= n;j += i){
				hurui[j] = false;
			}
		}
	}
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		scan.close();
		boolean[] hurui = new boolean[n + 1];
		gethurui(hurui,n);

		ArrayList<Integer> ps = new ArrayList<Integer>();

		for(int i = 0;i <= n;i++){
			if(hurui[i])
				ps.add(i);
		}

		ArrayList<Integer> ms = new ArrayList<Integer>();

		int n2 = n;
		for(Integer p : ps){
			int c = 0;
			while(n % p == 0){
				c++;
				n /= p;
			}
			if(c > 0)
				ms.add(c);
		}

		int ans = 0;
		for(Integer m : ms){
			ans = (ans ^ m);
		}

		if(ans != 0)
			System.out.println("Alice");
		else
			System.out.println("Bob");
	}
}
0