結果

問題 No.2 素因数ゲーム
ユーザー kuramukuramu
提出日時 2016-01-31 00:03:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 2,247 ms / 5,000 ms
コード長 1,435 bytes
コンパイル時間 6,128 ms
コンパイル使用メモリ 78,716 KB
実行使用メモリ 138,352 KB
最終ジャッジ日時 2024-12-26 12:19:23
合計ジャッジ時間 36,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
36,716 KB
testcase_01 AC 64 ms
36,508 KB
testcase_02 AC 61 ms
36,760 KB
testcase_03 AC 63 ms
36,900 KB
testcase_04 AC 61 ms
36,712 KB
testcase_05 AC 71 ms
36,820 KB
testcase_06 AC 240 ms
52,100 KB
testcase_07 AC 241 ms
54,120 KB
testcase_08 AC 227 ms
52,740 KB
testcase_09 AC 1,997 ms
138,352 KB
testcase_10 AC 1,688 ms
123,696 KB
testcase_11 AC 779 ms
79,232 KB
testcase_12 AC 798 ms
79,172 KB
testcase_13 AC 1,624 ms
119,808 KB
testcase_14 AC 175 ms
46,380 KB
testcase_15 AC 409 ms
63,228 KB
testcase_16 AC 1,187 ms
97,032 KB
testcase_17 AC 1,798 ms
125,408 KB
testcase_18 AC 1,894 ms
132,064 KB
testcase_19 AC 1,224 ms
92,740 KB
testcase_20 AC 1,554 ms
110,560 KB
testcase_21 AC 2,247 ms
135,528 KB
testcase_22 AC 1,834 ms
127,556 KB
testcase_23 AC 800 ms
80,936 KB
testcase_24 AC 1,914 ms
132,120 KB
testcase_25 AC 1,377 ms
108,400 KB
testcase_26 AC 972 ms
88,128 KB
testcase_27 AC 470 ms
65,476 KB
testcase_28 AC 1,105 ms
94,684 KB
testcase_29 AC 896 ms
84,736 KB
testcase_30 AC 817 ms
81,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;

public class Main {

	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  boolean[] dp = new boolean[N+1];
	    	  ArrayList<Integer> primeList = new ArrayList<>();
	    	  HashMap<Integer , Integer> hashMap = new HashMap<>();
	    	  Arrays.fill(dp, true);	    	  
	    	  dp[0] = false;
	    	  dp[1] = false;
	    	  
	    	  for(int i=2;i*i<=N;i++){
	    		  if(dp[i]){
	    			  for(int j=2;j*i<=N;j++){
	    				  dp[i*j] = false;
	    			  }
	    		  }
	    	  }	    	  
	    	  int index = 2;
	    	  while(N>1){	    		  
	    		  if(dp[index] && N % index == 0){
	    			  if(!hashMap.containsKey(index)){
	    				  hashMap.put(index, 1);
	    				  primeList.add(index);
	    			  }else{
	    				  hashMap.put(index, hashMap.get(index)+1);
	    			  }
	    			  N /= index;
	    		  }else{
	    			  index++;
	    		  }
	    	  }	    	  
	    	  int result = 0;
	    	  for(int i=0;i<primeList.size();i++){
	    		  result ^= hashMap.get(primeList.get(i));
	    	  }  	  
	    	  System.out.println(result==0?"Bob":"Alice");
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0