結果

問題 No.1665 quotient replace
ユーザー minimumminimum
提出日時 2021-09-04 13:24:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 280,384 KB
最終ジャッジ日時 2024-12-17 22:33:30
合計ジャッジ時間 114,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
161,996 KB
testcase_01 AC 84 ms
85,820 KB
testcase_02 AC 84 ms
82,792 KB
testcase_03 AC 907 ms
166,000 KB
testcase_04 AC 1,431 ms
89,568 KB
testcase_05 AC 302 ms
86,220 KB
testcase_06 TLE -
testcase_07 AC 1,698 ms
90,036 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 85 ms
82,344 KB
testcase_19 AC 82 ms
155,324 KB
testcase_20 AC 89 ms
84,124 KB
testcase_21 AC 87 ms
82,660 KB
testcase_22 AC 85 ms
83,196 KB
testcase_23 AC 87 ms
168,904 KB
testcase_24 AC 85 ms
83,608 KB
testcase_25 AC 83 ms
239,384 KB
testcase_26 AC 2,206 ms
88,360 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 83 ms
75,080 KB
testcase_43 AC 100 ms
238,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

# 素数列挙
mx = 10 ** 6
isprime = [True] * (mx + 1)
prime_list = []
isprime[0], isprime[1] = False, False
for i in range(2, mx):
    if isprime[i] == False:
        continue
    prime_list.append(i)
    j = 2 * i
    while j <= mx:
        isprime[j] = False
        j += i

#素因数分解
cnt = [0] * N
for p in prime_list:
    for i in range(N):
        while A[i] % p == 0:
            cnt[i] += 1
            A[i] //= p

# XOR
x = 0
for c in cnt:
    x ^= c
print(["black", "white"][x > 0])
0