結果

問題 No.1665 quotient replace
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-09-03 21:48:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 3,000 ms
コード長 368 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 225,956 KB
最終ジャッジ日時 2024-05-09 03:14:17
合計ジャッジ時間 12,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
83,400 KB
testcase_01 AC 183 ms
83,520 KB
testcase_02 AC 180 ms
83,360 KB
testcase_03 AC 187 ms
83,944 KB
testcase_04 AC 182 ms
83,888 KB
testcase_05 AC 187 ms
83,480 KB
testcase_06 AC 182 ms
83,984 KB
testcase_07 AC 185 ms
83,852 KB
testcase_08 AC 187 ms
83,872 KB
testcase_09 AC 203 ms
86,300 KB
testcase_10 AC 260 ms
123,904 KB
testcase_11 AC 315 ms
172,212 KB
testcase_12 AC 199 ms
95,456 KB
testcase_13 AC 356 ms
225,784 KB
testcase_14 AC 355 ms
225,752 KB
testcase_15 AC 359 ms
225,572 KB
testcase_16 AC 362 ms
225,900 KB
testcase_17 AC 364 ms
225,956 KB
testcase_18 AC 178 ms
83,552 KB
testcase_19 AC 180 ms
83,632 KB
testcase_20 AC 184 ms
83,692 KB
testcase_21 AC 181 ms
83,548 KB
testcase_22 AC 181 ms
83,684 KB
testcase_23 AC 187 ms
83,792 KB
testcase_24 AC 179 ms
83,336 KB
testcase_25 AC 180 ms
83,596 KB
testcase_26 AC 184 ms
83,924 KB
testcase_27 AC 184 ms
84,008 KB
testcase_28 AC 188 ms
87,404 KB
testcase_29 AC 194 ms
92,708 KB
testcase_30 AC 279 ms
152,356 KB
testcase_31 AC 319 ms
181,120 KB
testcase_32 AC 301 ms
191,784 KB
testcase_33 AC 233 ms
126,992 KB
testcase_34 AC 282 ms
165,604 KB
testcase_35 AC 277 ms
154,080 KB
testcase_36 AC 286 ms
164,276 KB
testcase_37 AC 279 ms
154,140 KB
testcase_38 AC 288 ms
177,092 KB
testcase_39 AC 270 ms
142,848 KB
testcase_40 AC 273 ms
143,152 KB
testcase_41 AC 271 ms
142,976 KB
testcase_42 AC 182 ms
83,480 KB
testcase_43 AC 180 ms
83,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

r ** j = n

"""

import math
import sys
from sys import stdin

dp = [0] * (10**6+1)

for i in range(1,len(dp)):
    for j in range(2*i,len(dp),i):
        dp[j] = max(dp[j] , dp[i] + 1)

#print (dp)

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))

x = 0
for a in A:
    x ^= dp[a]

if x == 0:
    print ("black")
else:
    print ("white")
0