結果

問題 No.1665 quotient replace
ユーザー kohei2019kohei2019
提出日時 2023-08-12 16:21:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 588 ms / 3,000 ms
コード長 992 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 272,580 KB
最終ジャッジ日時 2024-11-20 05:37:58
合計ジャッジ時間 19,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 379 ms
111,360 KB
testcase_04 AC 359 ms
111,528 KB
testcase_05 AC 374 ms
111,360 KB
testcase_06 AC 381 ms
111,744 KB
testcase_07 AC 384 ms
111,872 KB
testcase_08 AC 391 ms
111,360 KB
testcase_09 AC 390 ms
114,304 KB
testcase_10 AC 456 ms
157,724 KB
testcase_11 AC 514 ms
199,460 KB
testcase_12 AC 399 ms
123,648 KB
testcase_13 AC 588 ms
272,580 KB
testcase_14 AC 580 ms
272,068 KB
testcase_15 AC 567 ms
271,920 KB
testcase_16 AC 582 ms
271,688 KB
testcase_17 AC 581 ms
271,684 KB
testcase_18 AC 214 ms
96,000 KB
testcase_19 AC 142 ms
87,552 KB
testcase_20 AC 247 ms
97,408 KB
testcase_21 AC 254 ms
99,840 KB
testcase_22 AC 166 ms
89,344 KB
testcase_23 AC 315 ms
104,320 KB
testcase_24 AC 215 ms
95,744 KB
testcase_25 AC 169 ms
89,472 KB
testcase_26 AC 376 ms
111,872 KB
testcase_27 AC 376 ms
111,744 KB
testcase_28 AC 380 ms
115,208 KB
testcase_29 AC 406 ms
120,876 KB
testcase_30 AC 500 ms
193,548 KB
testcase_31 AC 514 ms
213,056 KB
testcase_32 AC 522 ms
198,072 KB
testcase_33 AC 448 ms
142,124 KB
testcase_34 AC 508 ms
210,836 KB
testcase_35 AC 496 ms
196,204 KB
testcase_36 AC 500 ms
208,556 KB
testcase_37 AC 498 ms
195,156 KB
testcase_38 AC 518 ms
223,308 KB
testcase_39 AC 482 ms
178,900 KB
testcase_40 AC 477 ms
179,044 KB
testcase_41 AC 482 ms
179,040 KB
testcase_42 AC 37 ms
52,096 KB
testcase_43 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeset(N): #N以下の素数をsetで求める.エラトステネスの篩O(√Nlog(N))
    lsx = [1]*(N+1)
    for i in range(2,int(-(-N**0.5//1))+1):
        if lsx[i] == 1:
            for j in range(i,N//i+1):
                lsx[j*i] = 0
    setprime = set()
    for i in range(2,N+1):
        if lsx[i] == 1:
            setprime.add(i)
    return setprime

def factorization_all_c(n):#n以下の自然数すべてをを素因数分解,素因数の数をカウント
    lspn = [0 for i in range(n+1)]
    lsnum = [i for i in range(n+1)]
    lsp = list(primeset(n))
    lsp.sort()
    for p in lsp:
        for j in range(1,n//p+1):
            cnt = 0
            while lsnum[p*j]%p==0:
                lsnum[p*j] //= p
                cnt += 1
            lspn[j*p]+=cnt
    return lspn

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

fa = factorization_all_c(max(lsA))
ans = 0
for i in range(N):
    ans ^= fa[lsA[i]]
if ans:
    print('white')
else:
    print('black')
0