結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-10 12:55:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 3,000 ms
コード長 362 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 253,600 KB
最終ジャッジ日時 2025-01-03 00:07:28
合計ジャッジ時間 12,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
70,912 KB
testcase_01 AC 76 ms
70,784 KB
testcase_02 AC 79 ms
70,912 KB
testcase_03 AC 81 ms
72,192 KB
testcase_04 AC 85 ms
72,960 KB
testcase_05 AC 80 ms
70,784 KB
testcase_06 AC 86 ms
75,136 KB
testcase_07 AC 87 ms
73,472 KB
testcase_08 AC 89 ms
74,240 KB
testcase_09 AC 107 ms
81,920 KB
testcase_10 AC 259 ms
153,476 KB
testcase_11 AC 430 ms
223,912 KB
testcase_12 AC 122 ms
98,048 KB
testcase_13 AC 590 ms
253,096 KB
testcase_14 AC 570 ms
253,480 KB
testcase_15 AC 558 ms
253,476 KB
testcase_16 AC 564 ms
253,220 KB
testcase_17 AC 583 ms
253,600 KB
testcase_18 AC 77 ms
70,784 KB
testcase_19 AC 78 ms
70,784 KB
testcase_20 AC 77 ms
70,912 KB
testcase_21 AC 79 ms
70,528 KB
testcase_22 AC 75 ms
70,764 KB
testcase_23 AC 75 ms
70,528 KB
testcase_24 AC 77 ms
70,656 KB
testcase_25 AC 79 ms
70,272 KB
testcase_26 AC 84 ms
73,344 KB
testcase_27 AC 87 ms
74,980 KB
testcase_28 AC 96 ms
82,888 KB
testcase_29 AC 106 ms
93,236 KB
testcase_30 AC 244 ms
191,672 KB
testcase_31 AC 323 ms
242,348 KB
testcase_32 AC 400 ms
222,732 KB
testcase_33 AC 222 ms
133,992 KB
testcase_34 AC 338 ms
181,604 KB
testcase_35 AC 319 ms
192,856 KB
testcase_36 AC 335 ms
179,528 KB
testcase_37 AC 313 ms
191,636 KB
testcase_38 AC 352 ms
194,568 KB
testcase_39 AC 282 ms
176,840 KB
testcase_40 AC 275 ms
176,932 KB
testcase_41 AC 287 ms
177,032 KB
testcase_42 AC 80 ms
70,784 KB
testcase_43 AC 77 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
T = [0]*(10**6+1)
for i in range(2,10**6+1):
    if T[i]==0:
        for j in range(i,10**6+1,i):
            T[j]=i

XOR = []
for a in A:
    c = 0
    while T[a]>0:
        c+=1
        a = a//T[a]
    XOR.append(c)

nim = 0
for xor in XOR:
    nim^=xor
if nim==0:
    print('black')
else:
    print('white')
0