結果

問題 No.2 素因数ゲーム
ユーザー kuramukuramu
提出日時 2016-01-31 00:22:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 50,364 KB
最終ジャッジ日時 2024-06-08 00:18:19
合計ジャッジ時間 4,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,252 KB
testcase_01 AC 54 ms
50,188 KB
testcase_02 AC 53 ms
49,856 KB
testcase_03 AC 50 ms
49,872 KB
testcase_04 AC 50 ms
50,244 KB
testcase_05 AC 50 ms
49,948 KB
testcase_06 AC 49 ms
49,920 KB
testcase_07 AC 49 ms
50,264 KB
testcase_08 AC 51 ms
50,160 KB
testcase_09 AC 52 ms
49,952 KB
testcase_10 AC 51 ms
50,280 KB
testcase_11 AC 50 ms
50,296 KB
testcase_12 AC 51 ms
50,264 KB
testcase_13 AC 52 ms
50,192 KB
testcase_14 AC 51 ms
49,840 KB
testcase_15 AC 54 ms
50,364 KB
testcase_16 AC 53 ms
50,156 KB
testcase_17 AC 53 ms
50,060 KB
testcase_18 AC 51 ms
50,284 KB
testcase_19 AC 52 ms
50,208 KB
testcase_20 AC 53 ms
49,876 KB
testcase_21 AC 52 ms
49,984 KB
testcase_22 AC 52 ms
50,308 KB
testcase_23 AC 52 ms
50,256 KB
testcase_24 AC 50 ms
50,204 KB
testcase_25 AC 51 ms
49,772 KB
testcase_26 AC 51 ms
50,036 KB
testcase_27 AC 50 ms
49,892 KB
testcase_28 AC 50 ms
50,104 KB
testcase_29 AC 50 ms
49,972 KB
testcase_30 AC 51 ms
49,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {

	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  int count = 0;
	    	  int ans = 0;
	    	  for(int i=2;i*i<=N;i++){
	    		  count = 0;
	    		  while(N%i==0){
	    			  N /= i;
	    			  count++;
	    		  }
	    		  ans ^= count;
	    	  }
	    	  if(N!=1) ans ^= 1;
	    	  System.out.println(ans==0?"Bob":"Alice");
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0