結果
| 問題 | No.3460 Chocolate Divide Game |
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2026-06-13 02:10:19 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 313 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 81,408 KB |
| 最終ジャッジ日時 | 2026-06-13 02:10:25 |
| 合計ジャッジ時間 | 5,194 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 WA * 1 |
ソースコード
import math
for _ in range(int(input())):
N= int(input())
if math.log2(N+1)!=int(math.log2(N+1)):
print('Alice')
else:
print('Bob')
H20