結果
| 問題 | No.3460 Chocolate Divide Game |
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2026-02-28 20:22:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 320 ms / 2,000 ms |
| + 748µs | |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 95,856 KB |
| 実行使用メモリ | 84,480 KB |
| 最終ジャッジ日時 | 2026-07-25 07:18:29 |
| 合計ジャッジ時間 | 3,925 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
g=[1]
for i in range(1,61):
g+=[g[-1]+(2**i)]
T=int(input())
for _ in range(T):
n=int(input())
print("Bob" if n in g else "Alice")
sasa8uyauya