結果

問題 No.2 素因数ゲーム
ユーザー lavoxlavox
提出日時 2021-07-11 20:11:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 2,715 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-07-02 03:13:07
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,264 KB
testcase_01 AC 125 ms
40,944 KB
testcase_02 AC 123 ms
40,956 KB
testcase_03 AC 114 ms
40,248 KB
testcase_04 AC 124 ms
41,060 KB
testcase_05 AC 122 ms
41,264 KB
testcase_06 AC 120 ms
41,080 KB
testcase_07 AC 122 ms
41,120 KB
testcase_08 AC 123 ms
41,104 KB
testcase_09 AC 121 ms
41,220 KB
testcase_10 AC 123 ms
40,952 KB
testcase_11 AC 123 ms
41,184 KB
testcase_12 AC 123 ms
41,056 KB
testcase_13 AC 125 ms
41,288 KB
testcase_14 AC 122 ms
41,152 KB
testcase_15 AC 111 ms
40,160 KB
testcase_16 AC 125 ms
40,944 KB
testcase_17 AC 123 ms
41,100 KB
testcase_18 AC 126 ms
41,008 KB
testcase_19 AC 121 ms
41,040 KB
testcase_20 AC 121 ms
41,196 KB
testcase_21 AC 124 ms
41,208 KB
testcase_22 AC 122 ms
41,220 KB
testcase_23 AC 119 ms
41,084 KB
testcase_24 AC 123 ms
41,176 KB
testcase_25 AC 112 ms
40,076 KB
testcase_26 AC 125 ms
41,124 KB
testcase_27 AC 121 ms
41,064 KB
testcase_28 AC 122 ms
41,152 KB
testcase_29 AC 123 ms
41,000 KB
testcase_30 AC 111 ms
40,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = Long.parseLong(sc.next());
		sc.close();
		
		int MAX = 10001;
		long mex = 0;
		for ( int i = 2 ; i < MAX ; i++ ) {
			int cnt = 0;
			while ( N % i == 0 ) {
				N /= i;
				cnt++;
			}
			if ( cnt > 0 ) mex = mex ^ cnt;
		}
		
		if ( N > 1 ) {
			mex = mex ^ 1;
		}
		
		if ( mex == 0 ) {
			System.out.println("Bob");
		} else {
			System.out.println("Alice");
		}
	}
}
0