結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 21:02:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,575 ms / 3,000 ms
コード長 400 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,524 KB
最終ジャッジ日時 2024-05-09 00:46:44
合計ジャッジ時間 57,540 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 724 ms
20,992 KB
testcase_01 AC 712 ms
20,992 KB
testcase_02 AC 710 ms
21,120 KB
testcase_03 AC 689 ms
21,120 KB
testcase_04 AC 780 ms
21,120 KB
testcase_05 AC 687 ms
20,992 KB
testcase_06 AC 729 ms
21,504 KB
testcase_07 AC 745 ms
20,992 KB
testcase_08 AC 709 ms
21,248 KB
testcase_09 AC 744 ms
22,380 KB
testcase_10 AC 1,337 ms
42,484 KB
testcase_11 AC 2,042 ms
87,080 KB
testcase_12 AC 849 ms
25,712 KB
testcase_13 AC 2,527 ms
111,520 KB
testcase_14 AC 2,575 ms
111,524 KB
testcase_15 AC 2,480 ms
111,516 KB
testcase_16 AC 2,511 ms
111,392 KB
testcase_17 AC 2,504 ms
111,428 KB
testcase_18 AC 703 ms
21,120 KB
testcase_19 AC 695 ms
20,992 KB
testcase_20 AC 693 ms
20,992 KB
testcase_21 AC 687 ms
20,992 KB
testcase_22 AC 696 ms
20,992 KB
testcase_23 AC 802 ms
21,120 KB
testcase_24 AC 706 ms
20,992 KB
testcase_25 AC 698 ms
21,120 KB
testcase_26 AC 693 ms
21,120 KB
testcase_27 AC 766 ms
21,248 KB
testcase_28 AC 785 ms
22,876 KB
testcase_29 AC 767 ms
24,812 KB
testcase_30 AC 1,288 ms
61,992 KB
testcase_31 AC 1,614 ms
88,940 KB
testcase_32 AC 2,066 ms
83,792 KB
testcase_33 AC 1,190 ms
37,928 KB
testcase_34 AC 1,744 ms
73,360 KB
testcase_35 AC 1,659 ms
64,156 KB
testcase_36 AC 1,786 ms
66,972 KB
testcase_37 AC 1,584 ms
65,428 KB
testcase_38 AC 1,835 ms
68,216 KB
testcase_39 AC 1,625 ms
54,004 KB
testcase_40 AC 1,665 ms
53,872 KB
testcase_41 AC 1,450 ms
53,744 KB
testcase_42 AC 716 ms
20,992 KB
testcase_43 AC 723 ms
21,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

spl = [0 for _ in range(1000001)]
spl[1] = 1
for i in range(2, 1000001):
  if spl[i] : continue;
  for j in range(i, 1000001, i):
    spl[j] = i

grundy = [0 for _ in range(n)]
for i in range(n):
  while a[i] > 1:
    a[i] //= spl[a[i]]
    grundy[i] += 1

nimber = 0
for i in range(n):
  nimber ^= grundy[i]
print("white" if nimber else "black")
0