結果

問題 No.1665 quotient replace
ユーザー kept1994kept1994
提出日時 2021-09-04 01:02:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 254,812 KB
最終ジャッジ日時 2024-12-15 21:31:11
合計ジャッジ時間 45,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
213,708 KB
testcase_01 AC 34 ms
56,832 KB
testcase_02 AC 31 ms
57,344 KB
testcase_03 AC 43 ms
60,416 KB
testcase_04 WA -
testcase_05 AC 37 ms
57,984 KB
testcase_06 AC 77 ms
73,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 984 ms
124,772 KB
testcase_11 AC 2,137 ms
179,460 KB
testcase_12 AC 283 ms
88,452 KB
testcase_13 AC 2,950 ms
253,592 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 34 ms
52,224 KB
testcase_21 AC 36 ms
52,480 KB
testcase_22 AC 35 ms
51,968 KB
testcase_23 AC 35 ms
52,224 KB
testcase_24 AC 34 ms
52,480 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 63 ms
62,464 KB
testcase_27 AC 103 ms
67,200 KB
testcase_28 AC 341 ms
79,452 KB
testcase_29 AC 644 ms
84,992 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 2,089 ms
177,968 KB
testcase_33 AC 813 ms
110,636 KB
testcase_34 AC 1,782 ms
178,720 KB
testcase_35 AC 1,542 ms
164,156 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 1,241 ms
146,800 KB
testcase_40 AC 1,226 ms
146,220 KB
testcase_41 AC 1,237 ms
146,092 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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