結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 20:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,393 ms / 3,000 ms
コード長 801 bytes
コンパイル時間 4,174 ms
コンパイル使用メモリ 84,592 KB
実行使用メモリ 63,052 KB
最終ジャッジ日時 2024-05-09 00:39:18
合計ジャッジ時間 32,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
45,308 KB
testcase_01 AC 158 ms
45,472 KB
testcase_02 AC 159 ms
45,724 KB
testcase_03 AC 219 ms
46,164 KB
testcase_04 AC 216 ms
46,148 KB
testcase_05 AC 166 ms
45,556 KB
testcase_06 AC 260 ms
50,464 KB
testcase_07 AC 230 ms
46,628 KB
testcase_08 AC 246 ms
48,260 KB
testcase_09 AC 372 ms
52,252 KB
testcase_10 AC 986 ms
60,600 KB
testcase_11 AC 1,202 ms
63,052 KB
testcase_12 AC 565 ms
52,504 KB
testcase_13 AC 1,342 ms
61,416 KB
testcase_14 AC 1,391 ms
62,896 KB
testcase_15 AC 1,348 ms
61,784 KB
testcase_16 AC 1,234 ms
61,788 KB
testcase_17 AC 1,393 ms
61,984 KB
testcase_18 AC 160 ms
45,264 KB
testcase_19 AC 160 ms
45,356 KB
testcase_20 AC 160 ms
45,536 KB
testcase_21 AC 158 ms
45,592 KB
testcase_22 AC 158 ms
45,572 KB
testcase_23 AC 156 ms
45,504 KB
testcase_24 AC 159 ms
45,564 KB
testcase_25 AC 160 ms
45,620 KB
testcase_26 AC 231 ms
47,080 KB
testcase_27 AC 259 ms
49,608 KB
testcase_28 AC 375 ms
52,152 KB
testcase_29 AC 513 ms
52,748 KB
testcase_30 AC 1,093 ms
61,076 KB
testcase_31 AC 1,167 ms
61,000 KB
testcase_32 AC 1,232 ms
59,488 KB
testcase_33 AC 897 ms
60,152 KB
testcase_34 AC 1,143 ms
61,664 KB
testcase_35 AC 1,135 ms
61,400 KB
testcase_36 AC 1,110 ms
59,092 KB
testcase_37 AC 1,127 ms
61,304 KB
testcase_38 AC 1,188 ms
59,444 KB
testcase_39 AC 1,105 ms
58,972 KB
testcase_40 AC 1,101 ms
62,616 KB
testcase_41 AC 1,099 ms
62,528 KB
testcase_42 AC 158 ms
45,672 KB
testcase_43 AC 158 ms
45,488 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