結果
| 問題 | No.3460 Chocolate Divide Game |
| コンテスト | |
| ユーザー |
kidodesu
|
| 提出日時 | 2026-02-28 13:55:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 309 ms / 2,000 ms |
| + 160µs | |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 96,112 KB |
| 実行使用メモリ | 84,608 KB |
| 最終ジャッジ日時 | 2026-07-25 05:31:21 |
| 合計ジャッジ時間 | 3,682 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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