結果

問題 No.1665 quotient replace
ユーザー とりゐとりゐ
提出日時 2021-09-03 21:31:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 258,300 KB
最終ジャッジ日時 2024-05-09 02:01:20
合計ジャッジ時間 13,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
69,248 KB
testcase_01 AC 79 ms
69,248 KB
testcase_02 AC 82 ms
69,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 80 ms
69,632 KB
testcase_06 AC 94 ms
78,592 KB
testcase_07 AC 87 ms
72,960 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 266 ms
140,492 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 586 ms
258,300 KB
testcase_18 AC 79 ms
69,632 KB
testcase_19 WA -
testcase_20 AC 81 ms
69,504 KB
testcase_21 AC 80 ms
69,248 KB
testcase_22 AC 81 ms
69,248 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 80 ms
69,632 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 444 ms
189,308 KB
testcase_33 AC 231 ms
123,516 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 350 ms
176,672 KB
testcase_38 AC 388 ms
189,056 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