結果

問題 No.2 素因数ゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-11 20:07:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 897 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-08 00:42:27
合計ジャッジ時間 7,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,468 KB
testcase_01 AC 124 ms
41,352 KB
testcase_02 AC 126 ms
41,172 KB
testcase_03 AC 122 ms
41,436 KB
testcase_04 AC 129 ms
41,104 KB
testcase_05 AC 129 ms
40,972 KB
testcase_06 AC 126 ms
41,600 KB
testcase_07 AC 125 ms
41,168 KB
testcase_08 AC 123 ms
41,228 KB
testcase_09 AC 137 ms
41,456 KB
testcase_10 AC 148 ms
41,492 KB
testcase_11 AC 128 ms
41,532 KB
testcase_12 AC 127 ms
41,596 KB
testcase_13 AC 135 ms
41,236 KB
testcase_14 AC 128 ms
41,328 KB
testcase_15 AC 126 ms
40,944 KB
testcase_16 AC 134 ms
41,196 KB
testcase_17 AC 138 ms
41,488 KB
testcase_18 AC 135 ms
41,276 KB
testcase_19 AC 118 ms
41,404 KB
testcase_20 AC 127 ms
41,012 KB
testcase_21 AC 137 ms
41,324 KB
testcase_22 AC 134 ms
41,244 KB
testcase_23 AC 136 ms
41,344 KB
testcase_24 AC 143 ms
41,480 KB
testcase_25 AC 133 ms
41,336 KB
testcase_26 AC 131 ms
41,472 KB
testcase_27 AC 130 ms
41,200 KB
testcase_28 AC 128 ms
41,216 KB
testcase_29 AC 131 ms
40,936 KB
testcase_30 AC 129 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    ArrayList<Integer> list = new ArrayList<Integer>();
    for(int i = 2; i * i <= N; i++) {
      boolean flg = true;
      for(int j = 2; j * j <= i; j++) {
        if(i % j == 0) {
          flg = false;
          break;
        }
      }
      if(flg) list.add(i);
    }
    HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
    for(int i = 0; i < list.size(); i++) {
      int p = list.get(i);
      int count = 0;
      while(N % p == 0) {
        count++;
        N /= p;
      }
      if(count > 0) map.put(p, count);
    }
    if(N > 1) map.put(N, 1);
    int x = 0;
    for(int p : map.keySet()) {
      x = (x ^ map.get(p));
    }
    String ans = "Alice";
    if(x == 0) ans = "Bob";
    System.out.println(ans);
  }
}
0