結果
問題 | No.1665 quotient replace |
ユーザー | とりゐ |
提出日時 | 2021-09-03 21:38:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 258,252 KB |
最終ジャッジ日時 | 2024-12-15 10:59:55 |
合計ジャッジ時間 | 10,836 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
70,400 KB |
testcase_01 | AC | 67 ms
70,348 KB |
testcase_02 | AC | 64 ms
70,440 KB |
testcase_03 | AC | 64 ms
71,012 KB |
testcase_04 | AC | 67 ms
71,728 KB |
testcase_05 | AC | 65 ms
70,928 KB |
testcase_06 | WA | - |
testcase_07 | AC | 70 ms
74,168 KB |
testcase_08 | AC | 74 ms
76,744 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 403 ms
190,972 KB |
testcase_12 | WA | - |
testcase_13 | AC | 513 ms
258,144 KB |
testcase_14 | AC | 466 ms
258,252 KB |
testcase_15 | AC | 479 ms
258,092 KB |
testcase_16 | AC | 471 ms
257,840 KB |
testcase_17 | WA | - |
testcase_18 | AC | 62 ms
70,344 KB |
testcase_19 | WA | - |
testcase_20 | AC | 62 ms
69,844 KB |
testcase_21 | AC | 64 ms
70,772 KB |
testcase_22 | AC | 62 ms
71,392 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 63 ms
69,936 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 82 ms
87,760 KB |
testcase_29 | WA | - |
testcase_30 | AC | 231 ms
176,612 KB |
testcase_31 | AC | 309 ms
204,692 KB |
testcase_32 | AC | 382 ms
189,264 KB |
testcase_33 | WA | - |
testcase_34 | AC | 302 ms
178,348 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 301 ms
177,036 KB |
testcase_38 | AC | 317 ms
189,208 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 64 ms
71,144 KB |
ソースコード
#複数回素因数分解や約数列挙をする場合(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==1: print('white') else: print('black')