結果

問題 No.1665 quotient replace
ユーザー ntudantuda
提出日時 2021-09-04 11:59:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 311,652 KB
最終ジャッジ日時 2024-12-17 19:53:00
合計ジャッジ時間 79,047 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,820 KB
testcase_01 AC 36 ms
220,964 KB
testcase_02 AC 36 ms
60,684 KB
testcase_03 AC 52 ms
306,980 KB
testcase_04 AC 51 ms
68,880 KB
testcase_05 AC 42 ms
306,148 KB
testcase_06 AC 118 ms
79,516 KB
testcase_07 AC 59 ms
311,652 KB
testcase_08 AC 85 ms
77,432 KB
testcase_09 AC 322 ms
85,892 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 769 ms
95,152 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 37 ms
59,616 KB
testcase_19 AC 38 ms
59,672 KB
testcase_20 AC 37 ms
60,784 KB
testcase_21 AC 38 ms
60,992 KB
testcase_22 AC 36 ms
59,816 KB
testcase_23 AC 37 ms
60,088 KB
testcase_24 AC 38 ms
59,700 KB
testcase_25 AC 42 ms
60,516 KB
testcase_26 AC 66 ms
65,396 KB
testcase_27 AC 107 ms
70,636 KB
testcase_28 AC 330 ms
79,636 KB
testcase_29 AC 615 ms
85,496 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 WA -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 35 ms
51,996 KB
testcase_43 AC 34 ms
196,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def num_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
    return len(divisors) - 1

N = int(input())
A = list(map(int,input().split()))
G = 0
for i in range(N):
    G ^= num_divisors(A[i])
if G == 0:
    print("black")
else:
    print("white")
0