結果

問題 No.1665 quotient replace
ユーザー ygd.ygd.
提出日時 2021-09-03 22:04:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 214,028 KB
最終ジャッジ日時 2024-12-15 13:33:41
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
83,028 KB
testcase_01 AC 143 ms
82,672 KB
testcase_02 AC 147 ms
82,728 KB
testcase_03 AC 152 ms
82,688 KB
testcase_04 AC 154 ms
82,752 KB
testcase_05 AC 147 ms
82,676 KB
testcase_06 AC 140 ms
83,792 KB
testcase_07 AC 151 ms
83,496 KB
testcase_08 AC 139 ms
83,316 KB
testcase_09 AC 154 ms
86,120 KB
testcase_10 AC 212 ms
138,480 KB
testcase_11 AC 282 ms
184,408 KB
testcase_12 AC 158 ms
92,624 KB
testcase_13 AC 308 ms
213,596 KB
testcase_14 AC 313 ms
213,856 KB
testcase_15 AC 315 ms
214,028 KB
testcase_16 AC 323 ms
213,904 KB
testcase_17 AC 305 ms
213,804 KB
testcase_18 AC 136 ms
82,680 KB
testcase_19 AC 150 ms
83,068 KB
testcase_20 AC 147 ms
82,728 KB
testcase_21 AC 159 ms
83,064 KB
testcase_22 AC 146 ms
82,732 KB
testcase_23 AC 140 ms
83,108 KB
testcase_24 AC 149 ms
82,644 KB
testcase_25 AC 138 ms
82,876 KB
testcase_26 AC 145 ms
83,376 KB
testcase_27 AC 154 ms
83,556 KB
testcase_28 AC 150 ms
86,132 KB
testcase_29 AC 154 ms
90,736 KB
testcase_30 AC 246 ms
145,408 KB
testcase_31 AC 275 ms
197,408 KB
testcase_32 WA -
testcase_33 AC 195 ms
126,432 KB
testcase_34 AC 250 ms
154,920 KB
testcase_35 AC 255 ms
146,168 KB
testcase_36 WA -
testcase_37 AC 244 ms
145,604 KB
testcase_38 AC 268 ms
168,000 KB
testcase_39 AC 221 ms
153,632 KB
testcase_40 AC 232 ms
154,028 KB
testcase_41 AC 210 ms
153,896 KB
testcase_42 WA -
testcase_43 AC 137 ms
82,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    N = int(input())
    MAX = pow(10,6) + 10
    Groundy = [1]*MAX
    Groundy[1] = 1
    for i in range(2,MAX):
        val = Groundy[i] + 1
        x = i
        while x + i < MAX:
            x += i
            Groundy[x] = max(Groundy[x], val)
    #print(Groundy)
    A = list(map(int,input().split()))
    x = 0
    for a in A:
        x ^= Groundy[a]
    if x == 0:
        print("black")
    else:
        print("white")



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