結果

問題 No.2 素因数ゲーム
ユーザー ゆうきゆうき
提出日時 2022-10-16 00:31:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 5,616 bytes
コンパイル時間 4,674 ms
コンパイル使用メモリ 101,512 KB
実行使用メモリ 59,256 KB
最終ジャッジ日時 2023-09-09 06:28:10
合計ジャッジ時間 10,700 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
58,756 KB
testcase_01 AC 141 ms
58,844 KB
testcase_02 AC 141 ms
58,676 KB
testcase_03 AC 142 ms
59,256 KB
testcase_04 AC 140 ms
58,792 KB
testcase_05 AC 141 ms
58,960 KB
testcase_06 AC 141 ms
59,040 KB
testcase_07 AC 141 ms
58,832 KB
testcase_08 AC 145 ms
58,764 KB
testcase_09 AC 141 ms
58,728 KB
testcase_10 AC 142 ms
58,916 KB
testcase_11 AC 141 ms
58,800 KB
testcase_12 AC 139 ms
58,636 KB
testcase_13 AC 140 ms
58,764 KB
testcase_14 AC 140 ms
58,772 KB
testcase_15 AC 141 ms
58,796 KB
testcase_16 AC 140 ms
58,764 KB
testcase_17 AC 144 ms
57,260 KB
testcase_18 AC 140 ms
58,812 KB
testcase_19 AC 140 ms
58,688 KB
testcase_20 AC 145 ms
58,956 KB
testcase_21 AC 142 ms
58,752 KB
testcase_22 AC 148 ms
58,904 KB
testcase_23 AC 142 ms
58,684 KB
testcase_24 AC 141 ms
58,724 KB
testcase_25 AC 146 ms
58,960 KB
testcase_26 AC 141 ms
58,832 KB
testcase_27 AC 141 ms
58,720 KB
testcase_28 AC 139 ms
58,664 KB
testcase_29 AC 141 ms
58,936 KB
testcase_30 AC 143 ms
59,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.management.ManagementFactory;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import java.util.function.IntFunction;

class Main{
  boolean isDebug = ManagementFactory.getRuntimeMXBean().getInputArguments().toString()
      .contains("-agentlib:jdwp");
  final MyReader in = new MyReader(System.in);
  final MyWriter out = new MyWriter(System.out);

  public static void main(final String[] args){ new Main().exe(); }

  private void exe(){
    input();
    preCalc();
    solve();
    out.flush();
  }

  int N = in.it();

  private void input(){}

  private void preCalc(){}

  void solve(){
    Set<Integer> set = primes(100000);

    Map<Integer, Integer> map = new HashMap<>();

    for (var p:set)
      while (N %p == 0) {
        N /= p;
        map.merge(p,1,Integer::sum);
      }

    if (1 < N)
      map.merge(N,1,Integer::sum);

    int win = 0;
    for (var n:map.values())
      win ^= n;

    if (win == 0)
      out.println("Bob");
    else
      out.println("Alice");
  }

  Set<Integer> primes(final int bound){
    Set<Integer> ret = new LinkedHashSet<>();
    for (int i = 2;i <= bound;i++) {
      boolean flg = true;
      for (final int p:ret)
        if (i %p == 0) {
          flg = false;
          break;
        } else if (i < p *p)
          break;
      if (flg)
        ret.add(i);
    }
    return ret;
  }

  int popcount(long x){
    x = x -(x >>1 &0x5555555555555555L);
    x = (x &0x3333333333333333L) +(x >>2 &0x3333333333333333L);
    x = x +(x >>4) &0x0f0f0f0f0f0f0f0fL;
    x = x +(x >>8);
    x = x +(x >>16);
    x = x +(x >>32);
    return (int) x &0x0000007f;
  }

  /* 定数 */
  final int mod = (int) 1e9 +7;
  final String yes = "Yes";
  final String no = "No";

  /* 入力 */
  static class MyReader{
    byte[] buf = new byte[1 <<16];
    int head = 0;
    int tail = 0;
    InputStream in;

    public MyReader(final InputStream in){ this.in = in; }

    byte read(){
      if (head == tail) {
        try {
          tail = in.read(buf);
        } catch (IOException e) {
          e.printStackTrace();
        }
        head = 0;
      }
      return buf[head++];
    }

    boolean isPrintable(final byte c){ return 32 < c && c < 127; }

    boolean isNum(final byte c){ return 47 < c && c < 58; }

    byte nextPrintable(){
      byte ret = read();
      return isPrintable(ret) ? ret : nextPrintable();
    }

    int it(){ return (int) lg(); }

    int[] it(final int N){
      int[] a = new int[N];
      Arrays.setAll(a,i -> it());
      return a;
    }

    int[][] it(final int H,final int W){ return arr(new int[H][],i -> it(W)); }

    int idx(){ return it() -1; }

    int[] idx(final int N){
      int[] a = new int[N];
      Arrays.setAll(a,i -> idx());
      return a;
    }

    int[][] idx(final int H,final int W){ return arr(new int[H][],i -> idx(W)); }

    long lg(){
      byte i = nextPrintable();
      boolean negative = i == 45;
      long n = negative ? 0 : i -'0';
      while (isPrintable(i = read()))
        n = 10 *n +i -'0';
      return negative ? -n : n;
    }

    long[] lg(final int N){
      long[] a = new long[N];
      Arrays.setAll(a,i -> lg());
      return a;
    }

    long[][] lg(final int H,final int W){ return arr(new long[H][],i -> lg(W)); }

    char[] ch(){ return str().toCharArray(); }

    char[][] ch(final int H){ return arr(new char[H][],i -> ch()); }

    String line(){
      StringBuilder sb = new StringBuilder();

      byte c;
      while (isPrintable(c = read()) || c == ' ')
        sb.append((char) c);
      return sb.toString();
    }

    String str(){
      StringBuilder sb = new StringBuilder();
      sb.append((char) nextPrintable());
      byte c;
      while (isPrintable(c = read()))
        sb.append((char) c);
      return sb.toString();
    }

    String[] str(final int N){ return arr(new String[N],i -> str()); }

    <T> T[] arr(final T[] arr,final IntFunction<T> f){
      Arrays.setAll(arr,f);
      return arr;
    }
  }

  /* 出力 */
  static class MyWriter{
    OutputStream out;

    byte[] buf = new byte[1 <<16];
    byte[] ibuf = new byte[20];

    int tail = 0;

    public MyWriter(final OutputStream out){ this.out = out; }

    void flush(){
      try {
        out.write(buf,0,tail);
        tail = 0;
      } catch (IOException e) {
        e.printStackTrace();
      }
    }

    void write(final byte b){
      buf[tail++] = b;
      if (tail == buf.length)
        flush();
    }

    void write(final byte[] b,final int off,final int len){
      for (int i = off;i < off +len;i++)
        write(b[i]);
    }

    void write(final char c){ write((byte) c); }

    void write(long n){
      if (n < 0) {
        n = -n;
        write('-');
      }

      int i = ibuf.length;
      do {
        ibuf[--i] = (byte) (n %10 +'0');
        n /= 10;
      } while (n > 0);

      write(ibuf,i,ibuf.length -i);
    }

    void println(final long n){
      write(n);
      write('\n');
    }

    public void println(final double d){ println(String.valueOf(d)); }

    void println(final String s){
      byte[] b = s.getBytes();
      for (byte bb:b)
        write(bb);
      write('\n');
    }

    public void println(final char[] s){
      for (char bb:s)
        write(bb);
      write('\n');
    }

    void println(final int[] a){
      for (int i = 0;i < a.length;i++) {
        if (0 < i)
          write(' ');
        write(a[i]);
      }
      write('\n');
    }

  }
}
0