結果

問題 No.1665 quotient replace
ユーザー AEnAEn
提出日時 2022-09-07 00:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,164 ms / 3,000 ms
コード長 522 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 253,360 KB
最終ジャッジ日時 2024-11-22 00:58:56
合計ジャッジ時間 34,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,776 KB
testcase_01 AC 48 ms
59,392 KB
testcase_02 AC 48 ms
59,776 KB
testcase_03 AC 57 ms
66,688 KB
testcase_04 AC 60 ms
67,712 KB
testcase_05 AC 53 ms
65,024 KB
testcase_06 AC 98 ms
78,336 KB
testcase_07 AC 71 ms
71,040 KB
testcase_08 AC 86 ms
75,648 KB
testcase_09 AC 174 ms
86,144 KB
testcase_10 AC 980 ms
129,668 KB
testcase_11 AC 1,748 ms
175,316 KB
testcase_12 AC 324 ms
95,488 KB
testcase_13 AC 2,164 ms
252,976 KB
testcase_14 AC 2,154 ms
252,976 KB
testcase_15 AC 2,116 ms
252,856 KB
testcase_16 AC 2,111 ms
253,360 KB
testcase_17 AC 2,110 ms
252,976 KB
testcase_18 AC 44 ms
59,776 KB
testcase_19 AC 44 ms
59,520 KB
testcase_20 AC 42 ms
59,392 KB
testcase_21 AC 42 ms
59,776 KB
testcase_22 AC 41 ms
59,776 KB
testcase_23 AC 43 ms
59,904 KB
testcase_24 AC 42 ms
59,648 KB
testcase_25 AC 41 ms
60,160 KB
testcase_26 AC 72 ms
69,504 KB
testcase_27 AC 122 ms
73,600 KB
testcase_28 AC 328 ms
86,908 KB
testcase_29 AC 505 ms
92,160 KB
testcase_30 AC 918 ms
165,204 KB
testcase_31 AC 970 ms
185,380 KB
testcase_32 AC 1,683 ms
174,264 KB
testcase_33 AC 809 ms
114,528 KB
testcase_34 AC 1,452 ms
182,520 KB
testcase_35 AC 1,360 ms
167,892 KB
testcase_36 AC 1,462 ms
178,980 KB
testcase_37 AC 1,359 ms
165,472 KB
testcase_38 AC 1,568 ms
194,784 KB
testcase_39 AC 1,168 ms
150,740 KB
testcase_40 AC 1,185 ms
150,804 KB
testcase_41 AC 1,261 ms
150,680 KB
testcase_42 AC 40 ms
59,648 KB
testcase_43 AC 42 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

def fac(M):
    if M == 1:
        return 0
    else:
        cnt = 0
        s = 2
        while s*s<=M:
            if M%s==0:
                while M%s==0:
                    M//=s
                    cnt += 1
            s += 1
        if M>1:
            cnt += 1
        return cnt

cal = [-1]*(10**6+1)
res = 0
for i in range(N):
    if cal[A[i]] == -1:
        cal[A[i]] = fac(A[i])
    res ^= cal[A[i]]
if res==0:
    print('black')
else:
    print('white')
0