結果
問題 | No.1665 quotient replace |
ユーザー | kept1994 |
提出日時 | 2021-09-04 01:20:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 250,008 KB |
最終ジャッジ日時 | 2024-05-09 10:07:01 |
合計ジャッジ時間 | 28,448 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
60,288 KB |
testcase_01 | AC | 44 ms
54,912 KB |
testcase_02 | AC | 45 ms
54,784 KB |
testcase_03 | AC | 56 ms
63,104 KB |
testcase_04 | AC | 57 ms
64,000 KB |
testcase_05 | AC | 49 ms
60,416 KB |
testcase_06 | AC | 95 ms
76,944 KB |
testcase_07 | AC | 65 ms
67,416 KB |
testcase_08 | AC | 77 ms
71,808 KB |
testcase_09 | AC | 159 ms
79,232 KB |
testcase_10 | AC | 1,096 ms
128,328 KB |
testcase_11 | AC | 2,323 ms
180,504 KB |
testcase_12 | AC | 315 ms
88,320 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 46 ms
55,296 KB |
testcase_19 | AC | 44 ms
55,040 KB |
testcase_20 | AC | 42 ms
55,296 KB |
testcase_21 | AC | 45 ms
55,040 KB |
testcase_22 | AC | 44 ms
55,296 KB |
testcase_23 | AC | 44 ms
55,040 KB |
testcase_24 | AC | 48 ms
54,864 KB |
testcase_25 | AC | 45 ms
54,912 KB |
testcase_26 | AC | 74 ms
65,152 KB |
testcase_27 | AC | 125 ms
69,888 KB |
testcase_28 | AC | 379 ms
80,368 KB |
testcase_29 | AC | 714 ms
85,760 KB |
testcase_30 | TLE | - |
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 | -- | - |
ソースコード
#!/usr/bin/env python3 import sys import functools def main(): N = int(input()) A = list(map(int, input().split())) def primeFactrization(n: int) -> list: primeFactors = list() i = 2 while i * i <= n: while n % i == 0: primeFactors.append(i) n //= i i += 1 if n != 1: primeFactors.append(n) return primeFactors pf = [len(primeFactrization(aa)) for aa in A] ans = 0 for i in pf: ans ^= i print("white" if ans else "black") return if __name__ == '__main__': main()