結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 20:26:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,384 ms / 3,000 ms
コード長 801 bytes
コンパイル時間 3,274 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 73,900 KB
最終ジャッジ日時 2024-12-15 08:49:24
合計ジャッジ時間 32,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
58,120 KB
testcase_01 AC 158 ms
58,064 KB
testcase_02 AC 156 ms
58,376 KB
testcase_03 AC 211 ms
58,760 KB
testcase_04 AC 209 ms
58,564 KB
testcase_05 AC 165 ms
58,444 KB
testcase_06 AC 261 ms
62,032 KB
testcase_07 AC 229 ms
58,768 KB
testcase_08 AC 243 ms
61,644 KB
testcase_09 AC 358 ms
63,228 KB
testcase_10 AC 968 ms
72,744 KB
testcase_11 AC 1,210 ms
72,036 KB
testcase_12 AC 563 ms
63,772 KB
testcase_13 AC 1,295 ms
72,296 KB
testcase_14 AC 1,384 ms
72,784 KB
testcase_15 AC 1,314 ms
72,004 KB
testcase_16 AC 1,342 ms
72,408 KB
testcase_17 AC 1,298 ms
72,148 KB
testcase_18 AC 160 ms
58,340 KB
testcase_19 AC 157 ms
58,444 KB
testcase_20 AC 158 ms
58,136 KB
testcase_21 AC 158 ms
58,476 KB
testcase_22 AC 146 ms
57,784 KB
testcase_23 AC 158 ms
58,316 KB
testcase_24 AC 158 ms
58,368 KB
testcase_25 AC 159 ms
58,228 KB
testcase_26 AC 230 ms
59,896 KB
testcase_27 AC 258 ms
61,952 KB
testcase_28 AC 366 ms
63,152 KB
testcase_29 AC 516 ms
63,712 KB
testcase_30 AC 940 ms
71,488 KB
testcase_31 AC 1,170 ms
71,940 KB
testcase_32 AC 1,181 ms
70,776 KB
testcase_33 AC 899 ms
70,676 KB
testcase_34 AC 1,123 ms
70,960 KB
testcase_35 AC 1,100 ms
70,512 KB
testcase_36 AC 1,116 ms
70,644 KB
testcase_37 AC 1,045 ms
70,808 KB
testcase_38 AC 1,176 ms
71,960 KB
testcase_39 AC 1,012 ms
70,188 KB
testcase_40 AC 1,094 ms
73,900 KB
testcase_41 AC 1,120 ms
70,688 KB
testcase_42 AC 158 ms
58,388 KB
testcase_43 AC 159 ms
57,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int n = Integer.parseInt(sc.next());
    int[] a = new int[n];
    for(int i = 0; i < n; i++) a[i] = Integer.parseInt(sc.next());

    int[] spl = new int[1000001];
    spl[1] = 1;
    for(int i = 2; i <= 1000000; i++){
      if(spl[i] != 0) continue;
      for(int j = i; j <= 1000000; j += i){
        spl[j] = i;
      }
    }

    int[] grundy = new int[n];
    for(int i = 0; i < n; i++){
      while(a[i] > 1){
        a[i] /= spl[a[i]];
        grundy[i]++;
      }
    }

    int nimber = 0;
    for(int i = 0; i < n; i++){
      nimber = nimber ^ grundy[i];
    }
    if(nimber == 0) System.out.println("black");
    else System.out.println("white");
    sc.close();
  }
}
0