結果

問題 No.1665 quotient replace
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-03 22:03:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,961 ms / 3,000 ms
コード長 604 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 129,220 KB
最終ジャッジ日時 2024-12-15 13:27:49
合計ジャッジ時間 34,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

U = 10 ** 6


def prime_sieve(N):
    #sieve[i] : iの最小の素因数
    sieve = [0] * (N + 1)
    prime = []
    for i in range(2, N + 1):
        if sieve[i] == 0:
            sieve[i] = i
            prime.append(i)
        for p in prime:
            if p > sieve[i] or i * p > N:
                break
            sieve[i * p] = p
    return sieve


sieve = prime_sieve(U + 5)
N = int(input())
A = list(map(int, input().split()))

xor = 0
for a in A:
    cnt = 0
    while sieve[a] != 0:
        cnt += 1
        a //= sieve[a]
    xor ^= cnt

if xor:
    print("white")
else:
    print("black")
0