結果
| 問題 | No.3460 Chocolate Divide Game |
| コンテスト | |
| ユーザー |
kidodesu
|
| 提出日時 | 2026-02-28 13:55:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 795 ms / 2,000 ms |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 181 ms |
| コンパイル使用メモリ | 77,800 KB |
| 実行使用メモリ | 73,444 KB |
| 最終ジャッジ日時 | 2026-02-28 13:55:52 |
| 合計ジャッジ時間 | 6,117 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
C = set()
now = 1
while now <= 10 ** 18:
C.add(now)
now = now * 2 + 1
for _ in range(int(input())):
if int(input()) in C:
print("Bob")
else:
print("Alice")
kidodesu