結果

問題 No.1665 quotient replace
ユーザー ああいいああいい
提出日時 2022-03-12 01:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 3,000 ms
コード長 413 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 253,200 KB
最終ジャッジ日時 2024-09-16 05:23:28
合計ジャッジ時間 10,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
74,644 KB
testcase_01 AC 72 ms
72,188 KB
testcase_02 AC 70 ms
74,064 KB
testcase_03 AC 71 ms
73,128 KB
testcase_04 AC 68 ms
72,932 KB
testcase_05 AC 69 ms
73,368 KB
testcase_06 AC 74 ms
75,180 KB
testcase_07 AC 72 ms
75,028 KB
testcase_08 AC 72 ms
74,392 KB
testcase_09 AC 78 ms
81,392 KB
testcase_10 AC 155 ms
127,632 KB
testcase_11 AC 209 ms
175,020 KB
testcase_12 AC 91 ms
92,716 KB
testcase_13 AC 269 ms
253,156 KB
testcase_14 AC 279 ms
253,200 KB
testcase_15 AC 319 ms
252,980 KB
testcase_16 AC 265 ms
253,144 KB
testcase_17 AC 275 ms
252,892 KB
testcase_18 AC 69 ms
73,572 KB
testcase_19 AC 71 ms
72,860 KB
testcase_20 AC 68 ms
73,940 KB
testcase_21 AC 72 ms
74,664 KB
testcase_22 AC 76 ms
72,864 KB
testcase_23 AC 70 ms
73,056 KB
testcase_24 AC 74 ms
72,904 KB
testcase_25 AC 73 ms
74,048 KB
testcase_26 AC 75 ms
74,412 KB
testcase_27 AC 76 ms
75,868 KB
testcase_28 AC 84 ms
82,316 KB
testcase_29 AC 88 ms
89,664 KB
testcase_30 AC 171 ms
154,660 KB
testcase_31 AC 218 ms
184,772 KB
testcase_32 AC 201 ms
174,388 KB
testcase_33 AC 138 ms
114,624 KB
testcase_34 AC 194 ms
181,004 KB
testcase_35 AC 171 ms
155,892 KB
testcase_36 AC 186 ms
179,116 KB
testcase_37 AC 164 ms
154,576 KB
testcase_38 AC 196 ms
194,468 KB
testcase_39 AC 162 ms
144,568 KB
testcase_40 AC 154 ms
144,612 KB
testcase_41 AC 160 ms
144,860 KB
testcase_42 AC 70 ms
72,680 KB
testcase_43 AC 68 ms
73,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
C = 10 ** 6 + 1
dat = [0] * C
for i in range(2,C):
    if dat[i] == 0:
        for j in range(i,C,i):
            dat[j] += 1
        now = i * i
        while now < C:
            for j in range(now,C,now):
                dat[j] += 1
            now *= i
grundy = 0
for a in A:
    grundy ^= dat[a]
if grundy:
    print("white")
else:
    print("black")
    
0