結果

問題 No.1665 quotient replace
ユーザー とりゐとりゐ
提出日時 2021-09-04 00:05:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 3,000 ms
コード長 635 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 258,084 KB
最終ジャッジ日時 2024-05-09 08:29:28
合計ジャッジ時間 10,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,248 KB
testcase_01 AC 62 ms
69,248 KB
testcase_02 AC 59 ms
69,632 KB
testcase_03 AC 59 ms
70,400 KB
testcase_04 AC 65 ms
71,424 KB
testcase_05 AC 59 ms
69,248 KB
testcase_06 AC 66 ms
78,592 KB
testcase_07 AC 65 ms
72,576 KB
testcase_08 AC 64 ms
75,776 KB
testcase_09 AC 78 ms
86,864 KB
testcase_10 AC 200 ms
140,864 KB
testcase_11 AC 348 ms
191,196 KB
testcase_12 AC 99 ms
96,128 KB
testcase_13 AC 414 ms
258,084 KB
testcase_14 AC 453 ms
257,920 KB
testcase_15 AC 424 ms
258,048 KB
testcase_16 AC 438 ms
257,924 KB
testcase_17 AC 425 ms
257,824 KB
testcase_18 AC 58 ms
69,504 KB
testcase_19 AC 57 ms
69,120 KB
testcase_20 AC 58 ms
69,120 KB
testcase_21 AC 57 ms
69,120 KB
testcase_22 AC 57 ms
69,248 KB
testcase_23 AC 58 ms
69,632 KB
testcase_24 AC 57 ms
69,504 KB
testcase_25 AC 56 ms
69,376 KB
testcase_26 AC 60 ms
72,960 KB
testcase_27 AC 63 ms
76,800 KB
testcase_28 AC 77 ms
87,336 KB
testcase_29 AC 86 ms
93,312 KB
testcase_30 AC 215 ms
176,592 KB
testcase_31 AC 280 ms
204,372 KB
testcase_32 AC 332 ms
189,188 KB
testcase_33 AC 179 ms
123,768 KB
testcase_34 AC 262 ms
178,440 KB
testcase_35 AC 258 ms
177,540 KB
testcase_36 AC 292 ms
187,780 KB
testcase_37 AC 257 ms
176,536 KB
testcase_38 AC 280 ms
189,056 KB
testcase_39 AC 238 ms
161,900 KB
testcase_40 AC 246 ms
161,932 KB
testcase_41 AC 233 ms
161,916 KB
testcase_42 AC 57 ms
69,120 KB
testcase_43 AC 55 ms
69,248 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