結果

問題 No.2 素因数ゲーム
ユーザー kuramukuramu
提出日時 2016-01-30 23:50:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,823 bytes
コンパイル時間 4,873 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 151,744 KB
最終ジャッジ日時 2024-09-21 19:36:21
合計ジャッジ時間 28,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,164 KB
testcase_01 AC 58 ms
50,076 KB
testcase_02 AC 63 ms
50,236 KB
testcase_03 AC 59 ms
49,916 KB
testcase_04 AC 61 ms
50,180 KB
testcase_05 WA -
testcase_06 AC 188 ms
67,636 KB
testcase_07 WA -
testcase_08 AC 189 ms
67,700 KB
testcase_09 AC 1,931 ms
151,744 KB
testcase_10 AC 1,375 ms
137,512 KB
testcase_11 WA -
testcase_12 AC 616 ms
94,508 KB
testcase_13 WA -
testcase_14 AC 154 ms
58,868 KB
testcase_15 AC 291 ms
77,700 KB
testcase_16 WA -
testcase_17 AC 1,578 ms
139,740 KB
testcase_18 AC 1,733 ms
145,744 KB
testcase_19 AC 1,005 ms
106,908 KB
testcase_20 AC 1,227 ms
125,192 KB
testcase_21 AC 1,957 ms
149,716 KB
testcase_22 WA -
testcase_23 AC 639 ms
96,416 KB
testcase_24 AC 1,490 ms
145,876 KB
testcase_25 WA -
testcase_26 AC 771 ms
102,284 KB
testcase_27 AC 378 ms
80,052 KB
testcase_28 WA -
testcase_29 AC 801 ms
98,488 KB
testcase_30 AC 752 ms
96,440 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 mult = 0;
	    	  for(int i=0;i<primeList.size();i++){
	    		  if(hashMap.get(primeList.get(i))>1) mult++;
	    	  }
	    	  if(primeList.size()==1){
	    		  System.out.println("Alice");
	    		  return;
	    	  }
	    	  
	    	  if(primeList.size() % 2 == 0){
	    		  if(mult % 2 == 0){
	    			  System.out.println("Bob");
	    		  }else{
	    			  System.out.println("Alice");
	    		  }
	    	  }else{
	    		  if(mult % 2 == 0){
	    			  	System.out.println("Bob");
	    		  }else{
	    			  	System.out.println("Alice");
	    		  }
	    	  }
	    	  
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0