結果

問題 No.1665 quotient replace
ユーザー shakayamishakayami
提出日時 2021-09-03 21:37:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 203,544 KB
最終ジャッジ日時 2024-12-15 10:57:10
合計ジャッジ時間 47,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,832 KB
testcase_01 AC 38 ms
177,308 KB
testcase_02 AC 39 ms
56,960 KB
testcase_03 AC 48 ms
58,880 KB
testcase_04 AC 49 ms
60,032 KB
testcase_05 AC 42 ms
57,472 KB
testcase_06 AC 78 ms
69,248 KB
testcase_07 AC 55 ms
63,232 KB
testcase_08 AC 68 ms
66,560 KB
testcase_09 AC 147 ms
77,440 KB
testcase_10 AC 1,043 ms
106,112 KB
testcase_11 AC 2,239 ms
151,548 KB
testcase_12 AC 298 ms
83,072 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 38 ms
51,584 KB
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 39 ms
51,840 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 67 ms
61,184 KB
testcase_27 AC 115 ms
65,280 KB
testcase_28 AC 368 ms
77,824 KB
testcase_29 AC 700 ms
81,024 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 2,142 ms
156,368 KB
testcase_33 AC 852 ms
102,400 KB
testcase_34 AC 1,737 ms
138,732 KB
testcase_35 AC 1,593 ms
128,656 KB
testcase_36 AC 1,672 ms
135,256 KB
testcase_37 AC 1,523 ms
126,104 KB
testcase_38 AC 1,830 ms
144,996 KB
testcase_39 AC 1,293 ms
114,288 KB
testcase_40 AC 1,298 ms
114,808 KB
testcase_41 AC 1,294 ms
114,180 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 39 ms
203,544 KB
権限があれば一括ダウンロードができます

ソースコード

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