結果

問題 No.2 素因数ゲーム
ユーザー kou6839kou6839
提出日時 2014-11-08 13:06:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 478 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 3,076 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-06-07 23:35:26
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,360 KB
testcase_01 AC 100 ms
40,104 KB
testcase_02 AC 115 ms
41,072 KB
testcase_03 AC 111 ms
40,836 KB
testcase_04 AC 102 ms
39,984 KB
testcase_05 AC 111 ms
40,872 KB
testcase_06 AC 100 ms
39,976 KB
testcase_07 AC 100 ms
40,232 KB
testcase_08 AC 134 ms
41,352 KB
testcase_09 AC 113 ms
41,116 KB
testcase_10 AC 117 ms
40,996 KB
testcase_11 AC 118 ms
41,152 KB
testcase_12 AC 117 ms
41,312 KB
testcase_13 AC 121 ms
40,984 KB
testcase_14 AC 116 ms
41,032 KB
testcase_15 AC 106 ms
40,716 KB
testcase_16 AC 113 ms
41,256 KB
testcase_17 AC 100 ms
39,864 KB
testcase_18 AC 112 ms
40,960 KB
testcase_19 AC 313 ms
40,308 KB
testcase_20 AC 248 ms
40,248 KB
testcase_21 AC 478 ms
40,896 KB
testcase_22 AC 113 ms
39,968 KB
testcase_23 AC 108 ms
40,704 KB
testcase_24 AC 100 ms
40,108 KB
testcase_25 AC 118 ms
39,848 KB
testcase_26 AC 107 ms
40,816 KB
testcase_27 AC 107 ms
40,272 KB
testcase_28 AC 99 ms
40,100 KB
testcase_29 AC 96 ms
39,716 KB
testcase_30 AC 104 ms
39,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		int ans =0;
		for(int k=2;N>1;k++){
			int temp=0;
			while(N%k==0){
				temp++;
				N/=k;
			}
			ans^=temp;
		}
		if(ans!=0){
			System.out.println("Alice");
		}else{
			System.out.println("Bob");
		}

	}
}
0