結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 63 ms
70,672 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 65 ms
70,076 KB
testcase_24 AC 67 ms
70,192 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 88 ms
87,412 KB
testcase_29 WA -
testcase_30 AC 243 ms
176,388 KB
testcase_31 AC 319 ms
204,664 KB
testcase_32 AC 388 ms
189,480 KB
testcase_33 AC 198 ms
123,728 KB
testcase_34 AC 312 ms
178,296 KB
testcase_35 AC 302 ms
177,992 KB
testcase_36 AC 306 ms
187,720 KB
testcase_37 AC 283 ms
176,504 KB
testcase_38 AC 321 ms
188,748 KB
testcase_39 AC 258 ms
162,192 KB
testcase_40 AC 258 ms
162,336 KB
testcase_41 AC 260 ms
162,168 KB
testcase_42 AC 65 ms
70,320 KB
testcase_43 AC 64 ms
69,792 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
for i in a:
  if fact(i)==1:
    cnt+=1
if cnt==1:
  print('white')
else:
  print('black')
0