結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 21:15:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,453 ms / 3,000 ms
コード長 438 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 111,572 KB
最終ジャッジ日時 2024-05-09 00:40:54
合計ジャッジ時間 54,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
20,992 KB
testcase_01 AC 661 ms
20,992 KB
testcase_02 AC 692 ms
21,120 KB
testcase_03 AC 665 ms
21,120 KB
testcase_04 AC 658 ms
20,992 KB
testcase_05 AC 667 ms
21,120 KB
testcase_06 AC 708 ms
21,248 KB
testcase_07 AC 641 ms
20,992 KB
testcase_08 AC 704 ms
21,248 KB
testcase_09 AC 707 ms
22,604 KB
testcase_10 AC 1,252 ms
44,628 KB
testcase_11 AC 2,018 ms
87,144 KB
testcase_12 AC 830 ms
25,472 KB
testcase_13 AC 2,453 ms
111,456 KB
testcase_14 AC 2,327 ms
111,552 KB
testcase_15 AC 2,324 ms
111,472 KB
testcase_16 AC 2,407 ms
111,456 KB
testcase_17 AC 2,438 ms
111,572 KB
testcase_18 AC 688 ms
21,120 KB
testcase_19 AC 650 ms
20,992 KB
testcase_20 AC 689 ms
20,992 KB
testcase_21 AC 655 ms
20,992 KB
testcase_22 AC 682 ms
20,992 KB
testcase_23 AC 649 ms
20,992 KB
testcase_24 AC 704 ms
21,120 KB
testcase_25 AC 675 ms
21,120 KB
testcase_26 AC 676 ms
21,120 KB
testcase_27 AC 691 ms
21,248 KB
testcase_28 AC 743 ms
22,612 KB
testcase_29 AC 751 ms
24,908 KB
testcase_30 AC 1,217 ms
62,112 KB
testcase_31 AC 1,471 ms
89,072 KB
testcase_32 AC 1,956 ms
83,724 KB
testcase_33 AC 1,165 ms
37,796 KB
testcase_34 AC 1,700 ms
69,484 KB
testcase_35 AC 1,601 ms
64,288 KB
testcase_36 AC 1,676 ms
66,908 KB
testcase_37 AC 1,555 ms
61,808 KB
testcase_38 AC 1,766 ms
68,340 KB
testcase_39 AC 1,390 ms
50,792 KB
testcase_40 AC 1,436 ms
50,676 KB
testcase_41 AC 1,481 ms
50,796 KB
testcase_42 AC 639 ms
21,120 KB
testcase_43 AC 629 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