結果

問題 No.1665 quotient replace
ユーザー satama6satama6
提出日時 2022-10-18 23:26:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 351 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 172,648 KB
最終ジャッジ日時 2024-06-29 05:25:00
合計ジャッジ時間 12,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,344 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 52 ms
59,648 KB
testcase_04 AC 54 ms
60,288 KB
testcase_05 AC 44 ms
58,496 KB
testcase_06 AC 135 ms
73,332 KB
testcase_07 AC 63 ms
63,360 KB
testcase_08 AC 97 ms
67,840 KB
testcase_09 AC 371 ms
78,848 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
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 factor(N):
    factor = set()

    i = 1
    while i*i <= N:
        if N % i == 0:
            factor.add(i)
            factor.add(N // i)
        i += 1
    return len(factor) - 1


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

grundy = 0

for a in A:
    grundy ^= factor(a)

if grundy == 0:
    print('black')
else:
    print('white')
0