結果

問題 No.1665 quotient replace
ユーザー 👑 rin204rin204
提出日時 2021-09-03 21:38:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 309 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 232,128 KB
最終ジャッジ日時 2024-05-09 02:29:26
合計ジャッジ時間 27,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
199,488 KB
testcase_01 AC 38 ms
52,264 KB
testcase_02 AC 35 ms
52,216 KB
testcase_03 AC 45 ms
60,872 KB
testcase_04 AC 46 ms
61,500 KB
testcase_05 AC 40 ms
59,672 KB
testcase_06 AC 71 ms
65,192 KB
testcase_07 AC 50 ms
63,888 KB
testcase_08 AC 63 ms
65,360 KB
testcase_09 AC 145 ms
68,960 KB
testcase_10 AC 1,132 ms
119,980 KB
testcase_11 AC 2,444 ms
167,224 KB
testcase_12 AC 313 ms
84,192 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 35 ms
52,612 KB
testcase_19 AC 35 ms
53,752 KB
testcase_20 AC 36 ms
52,640 KB
testcase_21 AC 36 ms
52,628 KB
testcase_22 AC 35 ms
53,480 KB
testcase_23 AC 35 ms
52,876 KB
testcase_24 AC 36 ms
52,816 KB
testcase_25 AC 35 ms
52,396 KB
testcase_26 AC 61 ms
60,796 KB
testcase_27 AC 113 ms
61,604 KB
testcase_28 AC 387 ms
67,404 KB
testcase_29 AC 753 ms
74,852 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 #

n = int(input())
alst = list(map(int, input().split()))
x = 0

for a in alst:
    cnt = 0
    j = 2
    while j * j <= a:
        while a % j == 0:
            a //= j
            cnt += 1
        j += 1
    if a != 1:
        cnt += 1
    x ^= cnt
    
if x == 0:
    print("black")
else:
    print("white")
0