結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 93 ms
69,120 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 90 ms
69,248 KB
testcase_24 AC 89 ms
69,632 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 112 ms
87,296 KB
testcase_29 WA -
testcase_30 AC 312 ms
176,492 KB
testcase_31 AC 432 ms
204,244 KB
testcase_32 AC 466 ms
189,436 KB
testcase_33 AC 238 ms
123,388 KB
testcase_34 AC 377 ms
178,688 KB
testcase_35 AC 369 ms
177,792 KB
testcase_36 AC 384 ms
187,788 KB
testcase_37 AC 358 ms
176,364 KB
testcase_38 AC 395 ms
189,184 KB
testcase_39 AC 318 ms
162,040 KB
testcase_40 AC 322 ms
162,016 KB
testcase_41 AC 325 ms
161,732 KB
testcase_42 AC 85 ms
68,992 KB
testcase_43 AC 84 ms
69,376 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