結果

問題 No.1665 quotient replace
ユーザー kept1994kept1994
提出日時 2021-09-04 01:02:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 253,964 KB
最終ジャッジ日時 2024-05-09 09:42:37
合計ジャッジ時間 28,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,984 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 49 ms
60,928 KB
testcase_04 WA -
testcase_05 AC 40 ms
58,240 KB
testcase_06 AC 83 ms
74,040 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,084 ms
124,640 KB
testcase_11 AC 2,300 ms
179,056 KB
testcase_12 AC 310 ms
88,836 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 37 ms
52,608 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 AC 37 ms
52,224 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 37 ms
52,480 KB
testcase_25 AC 37 ms
51,712 KB
testcase_26 AC 67 ms
62,464 KB
testcase_27 AC 114 ms
66,944 KB
testcase_28 AC 365 ms
79,244 KB
testcase_29 AC 699 ms
85,308 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = list(map(int, input().split()))
    dp = [-1] * N   # 0 : white, 1 : black
    dp[0] = 0
    def primeFactrization(n: int) -> list:
        primeFactors = list()
        i = 2
        while i * i <= n:
            while n % i == 0:
                primeFactors.append(i)
                n //= i
            i += 1
        if n != 1:
            primeFactors.append(n)
        return primeFactors
    pf = [len(primeFactrization(aa)) for aa in A]
    for i in range(N - 1):
        if pf[i + 1] % 2 == 0:
            dp[i + 1] = dp[i]
        else:
            dp[i + 1] = dp[i] ^ 1
    print("white" if dp[-1] == 0 else "black")
    return

if __name__ == '__main__':
    main()
0