結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 21:02:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,400 ms / 3,000 ms
コード長 400 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 112,780 KB
最終ジャッジ日時 2024-12-15 08:56:52
合計ジャッジ時間 47,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 579 ms
21,120 KB
testcase_01 AC 559 ms
21,120 KB
testcase_02 AC 528 ms
21,120 KB
testcase_03 AC 602 ms
21,120 KB
testcase_04 AC 567 ms
20,992 KB
testcase_05 AC 577 ms
21,120 KB
testcase_06 AC 597 ms
21,376 KB
testcase_07 AC 606 ms
21,120 KB
testcase_08 AC 579 ms
21,376 KB
testcase_09 AC 627 ms
22,256 KB
testcase_10 AC 1,099 ms
42,228 KB
testcase_11 AC 1,760 ms
87,628 KB
testcase_12 AC 674 ms
25,708 KB
testcase_13 AC 2,400 ms
111,928 KB
testcase_14 AC 2,162 ms
111,624 KB
testcase_15 AC 2,140 ms
112,012 KB
testcase_16 AC 2,098 ms
111,680 KB
testcase_17 AC 2,206 ms
112,780 KB
testcase_18 AC 548 ms
20,992 KB
testcase_19 AC 587 ms
20,992 KB
testcase_20 AC 573 ms
21,120 KB
testcase_21 AC 533 ms
20,992 KB
testcase_22 AC 550 ms
21,120 KB
testcase_23 AC 571 ms
21,120 KB
testcase_24 AC 567 ms
21,120 KB
testcase_25 AC 590 ms
21,120 KB
testcase_26 AC 591 ms
21,376 KB
testcase_27 AC 628 ms
21,376 KB
testcase_28 AC 552 ms
22,708 KB
testcase_29 AC 617 ms
24,284 KB
testcase_30 AC 990 ms
61,944 KB
testcase_31 AC 1,247 ms
89,508 KB
testcase_32 AC 1,754 ms
84,100 KB
testcase_33 AC 1,076 ms
37,928 KB
testcase_34 AC 1,542 ms
73,512 KB
testcase_35 AC 1,401 ms
64,184 KB
testcase_36 AC 1,431 ms
66,900 KB
testcase_37 AC 1,394 ms
65,508 KB
testcase_38 AC 1,520 ms
68,972 KB
testcase_39 AC 1,277 ms
53,912 KB
testcase_40 AC 1,237 ms
53,872 KB
testcase_41 AC 1,256 ms
54,004 KB
testcase_42 AC 553 ms
20,992 KB
testcase_43 AC 535 ms
20,992 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