結果

問題 No.1665 quotient replace
ユーザー 👑 rin204rin204
提出日時 2021-09-03 21:38:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 309 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 231,236 KB
最終ジャッジ日時 2024-12-15 11:01:53
合計ジャッジ時間 48,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,576 KB
testcase_01 AC 42 ms
56,832 KB
testcase_02 AC 37 ms
56,704 KB
testcase_03 AC 48 ms
60,032 KB
testcase_04 AC 49 ms
60,288 KB
testcase_05 AC 42 ms
57,600 KB
testcase_06 AC 74 ms
63,360 KB
testcase_07 AC 54 ms
61,824 KB
testcase_08 AC 66 ms
64,000 KB
testcase_09 AC 146 ms
68,864 KB
testcase_10 AC 1,141 ms
119,892 KB
testcase_11 AC 2,447 ms
166,756 KB
testcase_12 AC 316 ms
82,816 KB
testcase_13 AC 2,965 ms
229,756 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 38 ms
51,584 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 38 ms
51,328 KB
testcase_21 AC 37 ms
51,584 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 37 ms
51,712 KB
testcase_25 AC 37 ms
51,584 KB
testcase_26 AC 65 ms
59,776 KB
testcase_27 AC 116 ms
60,544 KB
testcase_28 AC 386 ms
66,432 KB
testcase_29 AC 754 ms
74,368 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 2,331 ms
166,212 KB
testcase_33 AC 929 ms
108,544 KB
testcase_34 AC 1,890 ms
158,836 KB
testcase_35 AC 1,734 ms
148,124 KB
testcase_36 AC 1,821 ms
157,920 KB
testcase_37 AC 1,659 ms
146,860 KB
testcase_38 AC 2,012 ms
186,584 KB
testcase_39 AC 1,411 ms
136,468 KB
testcase_40 AC 1,415 ms
136,720 KB
testcase_41 AC 1,411 ms
136,468 KB
testcase_42 AC 38 ms
51,840 KB
testcase_43 AC 38 ms
228,460 KB
権限があれば一括ダウンロードができます

ソースコード

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