結果

問題 No.1665 quotient replace
ユーザー とりゐとりゐ
提出日時 2021-09-03 21:31:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 258,924 KB
最終ジャッジ日時 2024-12-15 10:19:41
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,984 KB
testcase_01 AC 66 ms
70,508 KB
testcase_02 AC 71 ms
71,340 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 68 ms
70,172 KB
testcase_06 AC 73 ms
80,500 KB
testcase_07 AC 70 ms
74,732 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 237 ms
140,592 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 471 ms
258,924 KB
testcase_18 AC 63 ms
69,756 KB
testcase_19 WA -
testcase_20 AC 64 ms
69,880 KB
testcase_21 AC 63 ms
70,584 KB
testcase_22 AC 63 ms
69,860 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 67 ms
69,436 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 373 ms
189,288 KB
testcase_33 AC 193 ms
123,428 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 289 ms
176,692 KB
testcase_38 AC 303 ms
189,196 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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
for i in a:
  if fact(i)==1:
    cnt+=1
if cnt%2==0:
  print('white')
else:
  print('black')
0