結果
問題 | No.1665 quotient replace |
ユーザー | lloyz |
提出日時 | 2021-11-29 21:05:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 402 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 254,400 KB |
最終ジャッジ日時 | 2024-07-02 13:31:06 |
合計ジャッジ時間 | 9,610 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 74 ms
73,372 KB |
testcase_01 | AC | 73 ms
73,216 KB |
testcase_02 | AC | 75 ms
72,112 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 80 ms
73,176 KB |
testcase_06 | AC | 82 ms
76,672 KB |
testcase_07 | AC | 82 ms
74,232 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 159 ms
128,108 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 281 ms
254,072 KB |
testcase_18 | AC | 74 ms
73,224 KB |
testcase_19 | WA | - |
testcase_20 | AC | 80 ms
72,496 KB |
testcase_21 | AC | 79 ms
71,788 KB |
testcase_22 | AC | 76 ms
72,328 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 73 ms
72,456 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 201 ms
174,420 KB |
testcase_33 | AC | 136 ms
114,588 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 190 ms
154,960 KB |
testcase_38 | AC | 226 ms
194,468 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
ソースコード
n = int(input()) A = list(map(int, input().split())) prime = [True for _ in range(10**6 + 1)] prime[0] = prime[1] = False for i in range(2, 10**6 + 1): if not prime[i]: continue for j in range(2 * i, 10**6 + 1, i): prime[j] = False prime_num = 0 for i in range(n): if prime[A[i]]: prime_num += 1 if prime_num % 2 == 0: print("white") else: print("black")