結果

問題 No.1665 quotient replace
ユーザー とりゐとりゐ
提出日時 2021-09-04 00:05:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 3,000 ms
コード長 635 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 258,272 KB
最終ジャッジ日時 2024-12-15 19:42:09
合計ジャッジ時間 10,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,516 KB
testcase_01 AC 64 ms
70,024 KB
testcase_02 AC 63 ms
69,948 KB
testcase_03 AC 65 ms
71,740 KB
testcase_04 AC 66 ms
71,304 KB
testcase_05 AC 61 ms
71,532 KB
testcase_06 AC 73 ms
78,840 KB
testcase_07 AC 67 ms
74,880 KB
testcase_08 AC 71 ms
75,948 KB
testcase_09 AC 87 ms
86,856 KB
testcase_10 AC 224 ms
140,616 KB
testcase_11 AC 374 ms
190,992 KB
testcase_12 AC 110 ms
96,016 KB
testcase_13 AC 465 ms
257,756 KB
testcase_14 AC 468 ms
258,272 KB
testcase_15 AC 482 ms
257,876 KB
testcase_16 AC 466 ms
257,696 KB
testcase_17 AC 480 ms
257,884 KB
testcase_18 AC 66 ms
69,836 KB
testcase_19 AC 64 ms
69,760 KB
testcase_20 AC 63 ms
70,804 KB
testcase_21 AC 65 ms
69,668 KB
testcase_22 AC 63 ms
70,380 KB
testcase_23 AC 63 ms
70,520 KB
testcase_24 AC 65 ms
70,096 KB
testcase_25 AC 70 ms
70,156 KB
testcase_26 AC 68 ms
72,688 KB
testcase_27 AC 72 ms
77,744 KB
testcase_28 AC 86 ms
87,236 KB
testcase_29 AC 105 ms
92,828 KB
testcase_30 AC 237 ms
176,544 KB
testcase_31 AC 333 ms
204,492 KB
testcase_32 AC 382 ms
188,824 KB
testcase_33 AC 205 ms
123,608 KB
testcase_34 AC 308 ms
178,096 KB
testcase_35 AC 291 ms
177,652 KB
testcase_36 AC 300 ms
187,664 KB
testcase_37 AC 285 ms
176,548 KB
testcase_38 AC 314 ms
189,020 KB
testcase_39 AC 258 ms
161,988 KB
testcase_40 AC 261 ms
161,724 KB
testcase_41 AC 269 ms
162,284 KB
testcase_42 AC 66 ms
69,184 KB
testcase_43 AC 68 ms
69,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#複数回素因数分解や約数列挙をする場合(n<=10^6)

#エラトステネスの篩
m=10**6
d=[-1]*(m+1)
for i in range(2,m+1):
  if d[i]==-1:
    d[i]=i
    j=2
    while i*j<=m:
      d[i*j]=i
      j+=1
#n の素因数分解
import collections
def fact(n):
  c=0
  while n!=1:
    k=d[n]
    c+=1
    n//=k
  #return c
  return c
#n の約数列挙
def div(n):
  s=set([1])
  while n!=1:
    x=d[n]
    t=s.copy()
    for i in s:
      t.add(i*x)
    n//=x
    s=t.copy()
  return s

n=int(input())
a=list(map(int,input().split()))
cnt=0
xor=0
for i in a:
  xor^=fact(i)
if xor!=0:
  print('white')
else:
  print('black')
0