結果

問題 No.1665 quotient replace
ユーザー kept1994kept1994
提出日時 2021-09-04 01:20:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 249,760 KB
最終ジャッジ日時 2024-12-15 22:10:15
合計ジャッジ時間 49,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
220,436 KB
testcase_01 AC 48 ms
60,032 KB
testcase_02 AC 50 ms
59,776 KB
testcase_03 AC 60 ms
62,976 KB
testcase_04 AC 62 ms
64,384 KB
testcase_05 AC 54 ms
60,544 KB
testcase_06 AC 102 ms
76,416 KB
testcase_07 AC 69 ms
67,200 KB
testcase_08 AC 86 ms
70,912 KB
testcase_09 AC 169 ms
79,104 KB
testcase_10 AC 1,100 ms
127,956 KB
testcase_11 AC 2,357 ms
179,992 KB
testcase_12 AC 327 ms
87,936 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 46 ms
54,912 KB
testcase_19 AC 47 ms
54,400 KB
testcase_20 AC 46 ms
54,912 KB
testcase_21 AC 48 ms
54,272 KB
testcase_22 AC 49 ms
54,272 KB
testcase_23 AC 50 ms
55,040 KB
testcase_24 AC 48 ms
55,040 KB
testcase_25 AC 49 ms
54,912 KB
testcase_26 AC 79 ms
64,768 KB
testcase_27 AC 129 ms
69,504 KB
testcase_28 AC 387 ms
79,692 KB
testcase_29 AC 721 ms
85,372 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 2,261 ms
178,284 KB
testcase_33 AC 902 ms
111,112 KB
testcase_34 AC 1,848 ms
180,664 KB
testcase_35 AC 1,684 ms
167,420 KB
testcase_36 AC 1,764 ms
178,500 KB
testcase_37 AC 1,605 ms
164,848 KB
testcase_38 AC 1,933 ms
192,072 KB
testcase_39 AC 1,362 ms
148,956 KB
testcase_40 AC 1,369 ms
149,200 KB
testcase_41 AC 1,367 ms
148,948 KB
testcase_42 AC 48 ms
54,400 KB
testcase_43 AC 47 ms
247,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
import functools

def main():
    N = int(input())
    A = list(map(int, input().split()))
    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]
    ans = 0
    for i in pf:
        ans ^= i
    print("white" if ans else "black")
    return

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