結果

問題 No.2814 Block Game
ユーザー usatyousatyo
提出日時 2024-07-19 22:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-19 22:17:05
合計ジャッジ時間 13,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

def all_two(x):
    while x % 2 == 0:
        x //= 2
    return x == 1


t = int(input())

for _ in range(t):
    n, s = input().split()
    n = int(n)
    if n == 1:
        if s == "Odd":
            print("Alice")
        else:
            print("Bob")
        continue

    if n & 1:
        print("Alice")
    else:
        if all_two(n):
            if (n // 2) % 2 == 0 and s == "Even" or (n // 2) % 2 == 1 and s == "Odd":
                print("Alice")
            else:
                print("Bob")
        else:
            print("Bob")
0