結果

問題 No.2 素因数ゲーム
ユーザー kuramukuramu
提出日時 2016-01-31 00:22:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 73,292 KB
実行使用メモリ 36,916 KB
最終ジャッジ日時 2024-12-26 12:08:33
合計ジャッジ時間 6,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,764 KB
testcase_01 AC 59 ms
36,736 KB
testcase_02 AC 64 ms
36,864 KB
testcase_03 AC 62 ms
36,872 KB
testcase_04 AC 63 ms
36,428 KB
testcase_05 AC 60 ms
36,408 KB
testcase_06 AC 62 ms
36,524 KB
testcase_07 AC 61 ms
36,844 KB
testcase_08 AC 60 ms
36,792 KB
testcase_09 AC 61 ms
36,880 KB
testcase_10 AC 59 ms
36,912 KB
testcase_11 AC 67 ms
36,540 KB
testcase_12 AC 62 ms
36,644 KB
testcase_13 AC 63 ms
36,916 KB
testcase_14 AC 62 ms
36,756 KB
testcase_15 AC 62 ms
36,724 KB
testcase_16 AC 61 ms
36,612 KB
testcase_17 AC 62 ms
36,824 KB
testcase_18 AC 60 ms
36,536 KB
testcase_19 AC 61 ms
36,540 KB
testcase_20 AC 64 ms
36,392 KB
testcase_21 AC 64 ms
36,672 KB
testcase_22 AC 65 ms
36,644 KB
testcase_23 AC 61 ms
36,852 KB
testcase_24 AC 64 ms
36,732 KB
testcase_25 AC 62 ms
36,800 KB
testcase_26 AC 60 ms
36,904 KB
testcase_27 AC 62 ms
36,764 KB
testcase_28 AC 62 ms
36,664 KB
testcase_29 AC 63 ms
36,704 KB
testcase_30 AC 63 ms
36,868 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