結果

問題 No.2 素因数ゲーム
ユーザー kuramukuramu
提出日時 2016-01-31 00:03:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,755 ms / 5,000 ms
コード長 1,435 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 78,988 KB
実行使用メモリ 151,992 KB
最終ジャッジ日時 2024-06-08 00:22:05
合計ジャッジ時間 25,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,980 KB
testcase_01 AC 50 ms
50,244 KB
testcase_02 AC 53 ms
49,856 KB
testcase_03 AC 51 ms
50,160 KB
testcase_04 AC 52 ms
50,204 KB
testcase_05 AC 55 ms
50,268 KB
testcase_06 AC 161 ms
67,784 KB
testcase_07 AC 179 ms
67,948 KB
testcase_08 AC 168 ms
67,948 KB
testcase_09 AC 1,542 ms
151,992 KB
testcase_10 AC 1,296 ms
137,468 KB
testcase_11 AC 548 ms
94,684 KB
testcase_12 AC 546 ms
94,560 KB
testcase_13 AC 1,220 ms
133,544 KB
testcase_14 AC 140 ms
58,908 KB
testcase_15 AC 243 ms
77,924 KB
testcase_16 AC 852 ms
111,036 KB
testcase_17 AC 1,331 ms
139,916 KB
testcase_18 AC 1,523 ms
146,068 KB
testcase_19 AC 926 ms
106,972 KB
testcase_20 AC 1,173 ms
125,532 KB
testcase_21 AC 1,755 ms
149,752 KB
testcase_22 AC 1,388 ms
141,836 KB
testcase_23 AC 598 ms
96,640 KB
testcase_24 AC 1,466 ms
146,044 KB
testcase_25 AC 1,051 ms
123,092 KB
testcase_26 AC 718 ms
102,852 KB
testcase_27 AC 297 ms
80,032 KB
testcase_28 AC 854 ms
108,932 KB
testcase_29 AC 672 ms
98,748 KB
testcase_30 AC 590 ms
96,620 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