結果

問題 No.1665 quotient replace
ユーザー donutholedonuthole
提出日時 2021-09-03 23:14:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,824 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 240,500 KB
最終ジャッジ日時 2024-05-09 06:58:09
合計ジャッジ時間 9,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,948 KB
testcase_01 AC 63 ms
69,628 KB
testcase_02 AC 62 ms
68,948 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
86,320 KB
testcase_06 AC 126 ms
86,280 KB
testcase_07 AC 125 ms
86,528 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 178 ms
137,896 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 331 ms
240,500 KB
testcase_18 AC 88 ms
78,648 KB
testcase_19 WA -
testcase_20 AC 93 ms
79,952 KB
testcase_21 AC 92 ms
80,196 KB
testcase_22 AC 83 ms
77,700 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 86 ms
77,048 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 250 ms
172,284 KB
testcase_33 AC 166 ms
125,956 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 235 ms
177,184 KB
testcase_38 AC 243 ms
202,568 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# region template
import typing
import sys
import math
import collections
import bisect
import itertools
import heapq
import copy


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def ns1(): return map(lambda x: int(x)-1, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))
def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()))
def nall(): return list(map(int, sys.stdin.buffer.read().split()))
def flush(): return sys.stdout.flush()
def nic(): return int(sys.stdin.readline())
def nsc(): return map(int, sys.stdin.readline().split())
def nac(): return list(map(int, sys.stdin.readline().split()))
def na1c(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split()))
# endregion


# sys.setrecursionlimit(10**7+1)
inf = 10**20
mod = 10**9+7
# mod = 998244353


def Eratosthenes(n):  # N以下のすべての値の素数判定 O(NloglogN)、N=10^7のとき4*10^7くらい
    a = [True]*(n + 1)
    a[0], a[1] = False, False
    if n >= 2:
        for i in range(2, n + 1):
            if a[i]:
                for j in range(i+i, n + 1, i):
                    a[j] = False
    # a = [i for i in range(n+1) if a[i]]
    return a


def main():
    n = ni()
    a = na()

    lim = max(a)
    kushi = Eratosthenes(lim)
    base = 0
    over = 0
    for ai in a:
        if kushi[ai]:
            base += 1
        elif ai != 1:
            over += 1

    res = 0
    # 0:white win, 1:black win
    b = base % 2
    o = over % 2
    if o:
        if b:
            res = 1
        else:
            res = 0
    else:
        if b:
            res = 1
        else:
            res = 0

    print('white' if res^1 else 'black')


if __name__ == '__main__':
    main()
0