結果

問題 No.1665 quotient replace
ユーザー shakayamishakayami
提出日時 2021-09-03 21:37:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 179,808 KB
最終ジャッジ日時 2024-05-09 02:25:11
合計ジャッジ時間 27,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,972 KB
testcase_01 AC 40 ms
53,076 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 46 ms
59,192 KB
testcase_04 AC 49 ms
59,904 KB
testcase_05 AC 43 ms
57,984 KB
testcase_06 AC 78 ms
69,760 KB
testcase_07 AC 55 ms
63,360 KB
testcase_08 AC 68 ms
67,584 KB
testcase_09 AC 149 ms
77,804 KB
testcase_10 AC 1,043 ms
106,368 KB
testcase_11 AC 2,245 ms
151,996 KB
testcase_12 AC 298 ms
83,076 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 39 ms
51,712 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 39 ms
52,608 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 67 ms
61,824 KB
testcase_27 AC 115 ms
65,920 KB
testcase_28 AC 372 ms
78,000 KB
testcase_29 AC 702 ms
81,040 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 #

def prime_count(K):
    res=0
    p=2
    while(p*p<=K):
        while(K%p==0):
            res+=1
            K//=p
        p+=1
    if K>1:
        res+=1
    return res
N=int(input())
A=[int(i) for i in input().split()]
X=[prime_count(a) for a in A]
Grundy=0
for i in range(N):
    Grundy^=X[i]
if Grundy==0:
    print("black")
else:
    print("white")
0