結果

問題 No.1665 quotient replace
ユーザー nikumakarenikumakare
提出日時 2021-12-09 23:23:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 226 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 86,912 KB
実行使用メモリ 107,408 KB
最終ジャッジ日時 2023-09-24 15:36:07
合計ジャッジ時間 11,025 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,888 KB
testcase_01 AC 75 ms
75,652 KB
testcase_02 AC 72 ms
71,180 KB
testcase_03 AC 94 ms
76,704 KB
testcase_04 AC 95 ms
76,544 KB
testcase_05 AC 80 ms
75,808 KB
testcase_06 AC 204 ms
76,852 KB
testcase_07 AC 102 ms
76,688 KB
testcase_08 AC 148 ms
76,576 KB
testcase_09 AC 545 ms
78,516 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