結果

問題 No.2 素因数ゲーム
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 03:27:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-07-06 13:52:25
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,504 KB
testcase_01 AC 115 ms
54,160 KB
testcase_02 AC 112 ms
53,488 KB
testcase_03 AC 113 ms
53,432 KB
testcase_04 AC 116 ms
53,796 KB
testcase_05 AC 118 ms
54,244 KB
testcase_06 AC 122 ms
53,960 KB
testcase_07 AC 116 ms
53,716 KB
testcase_08 WA -
testcase_09 AC 118 ms
53,904 KB
testcase_10 AC 105 ms
52,284 KB
testcase_11 AC 107 ms
52,908 KB
testcase_12 AC 105 ms
52,848 KB
testcase_13 AC 117 ms
54,136 KB
testcase_14 AC 104 ms
52,888 KB
testcase_15 AC 121 ms
54,088 KB
testcase_16 AC 102 ms
52,488 KB
testcase_17 AC 110 ms
52,872 KB
testcase_18 AC 117 ms
54,316 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
54,044 KB
testcase_24 AC 116 ms
53,900 KB
testcase_25 WA -
testcase_26 AC 106 ms
52,604 KB
testcase_27 AC 121 ms
53,492 KB
testcase_28 AC 113 ms
53,184 KB
testcase_29 AC 115 ms
52,664 KB
testcase_30 AC 117 ms
53,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		long N = sc.nextLong();
		
		int xor = 0;
		for(long i = 2; i <= 100000; i++){
			int count = 0;
			
			while(N % i == 0){
				N /= i;
				count++;
			}
			
			xor ^= count;
		}
		
		System.out.println(xor == 0 ? "Bob" : "Alice");
		
	}
	
}
0