結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 21:15:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,430 ms / 3,000 ms
コード長 438 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 111,580 KB
最終ジャッジ日時 2024-12-15 08:50:49
合計ジャッジ時間 54,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 656 ms
20,864 KB
testcase_01 AC 666 ms
20,992 KB
testcase_02 AC 671 ms
20,864 KB
testcase_03 AC 703 ms
20,864 KB
testcase_04 AC 636 ms
20,992 KB
testcase_05 AC 659 ms
21,120 KB
testcase_06 AC 699 ms
21,376 KB
testcase_07 AC 655 ms
20,992 KB
testcase_08 AC 691 ms
21,376 KB
testcase_09 AC 731 ms
22,344 KB
testcase_10 AC 1,289 ms
44,504 KB
testcase_11 AC 2,066 ms
87,020 KB
testcase_12 AC 844 ms
25,600 KB
testcase_13 AC 2,364 ms
111,288 KB
testcase_14 AC 2,383 ms
111,520 KB
testcase_15 AC 2,430 ms
111,224 KB
testcase_16 AC 2,394 ms
111,580 KB
testcase_17 AC 2,411 ms
111,404 KB
testcase_18 AC 704 ms
20,992 KB
testcase_19 AC 686 ms
20,992 KB
testcase_20 AC 692 ms
20,864 KB
testcase_21 AC 674 ms
20,992 KB
testcase_22 AC 717 ms
20,864 KB
testcase_23 AC 672 ms
21,120 KB
testcase_24 AC 660 ms
20,864 KB
testcase_25 AC 679 ms
20,864 KB
testcase_26 AC 664 ms
21,120 KB
testcase_27 AC 670 ms
21,376 KB
testcase_28 AC 705 ms
22,480 KB
testcase_29 AC 736 ms
24,908 KB
testcase_30 AC 1,196 ms
62,052 KB
testcase_31 AC 1,491 ms
88,888 KB
testcase_32 AC 1,915 ms
83,784 KB
testcase_33 AC 1,182 ms
37,680 KB
testcase_34 AC 1,730 ms
69,192 KB
testcase_35 AC 1,593 ms
64,036 KB
testcase_36 AC 1,672 ms
66,852 KB
testcase_37 AC 1,616 ms
61,684 KB
testcase_38 AC 1,785 ms
68,336 KB
testcase_39 AC 1,443 ms
50,668 KB
testcase_40 AC 1,397 ms
50,664 KB
testcase_41 AC 1,436 ms
50,684 KB
testcase_42 AC 669 ms
21,120 KB
testcase_43 AC 680 ms
21,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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