結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
69,036 KB
testcase_01 AC 62 ms
68,980 KB
testcase_02 AC 65 ms
69,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 118 ms
86,504 KB
testcase_06 AC 120 ms
86,456 KB
testcase_07 AC 129 ms
86,692 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 167 ms
137,528 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 324 ms
240,504 KB
testcase_18 AC 87 ms
79,064 KB
testcase_19 WA -
testcase_20 AC 87 ms
79,764 KB
testcase_21 AC 89 ms
79,992 KB
testcase_22 AC 80 ms
76,656 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 85 ms
76,868 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 242 ms
172,468 KB
testcase_33 AC 158 ms
126,108 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 229 ms
177,500 KB
testcase_38 AC 240 ms
202,548 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