結果

問題 No.1665 quotient replace
ユーザー nikumakarenikumakare
提出日時 2021-12-09 23:23:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 226 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 113,588 KB
最終ジャッジ日時 2024-07-17 16:22:37
合計ジャッジ時間 8,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
65,936 KB
testcase_01 AC 41 ms
57,600 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 54 ms
59,904 KB
testcase_04 AC 59 ms
61,152 KB
testcase_05 AC 45 ms
58,864 KB
testcase_06 AC 155 ms
64,256 KB
testcase_07 AC 67 ms
62,080 KB
testcase_08 AC 108 ms
62,848 KB
testcase_09 AC 459 ms
67,840 KB
testcase_10 TLE -
testcase_11 -- -
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 #

n=int(input())
A=[int(i) for i in input().split()]
ans=0
for num in A:
    sub=0
    for i in range(2,1001):
        while num%i==0:
            num//=i
            sub+=1
    ans^=sub
print("white") if ans else print("black")
0