結果

問題 No.2814 Block Game
ユーザー 👑 rin204rin204
提出日時 2024-07-19 22:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 854 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,156 KB
最終ジャッジ日時 2024-07-19 22:19:26
合計ジャッジ時間 18,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 744 ms
76,600 KB
testcase_02 AC 771 ms
76,700 KB
testcase_03 AC 740 ms
76,420 KB
testcase_04 AC 759 ms
76,416 KB
testcase_05 AC 760 ms
76,600 KB
testcase_06 AC 760 ms
76,368 KB
testcase_07 AC 815 ms
76,672 KB
testcase_08 AC 782 ms
76,800 KB
testcase_09 AC 773 ms
76,784 KB
testcase_10 AC 799 ms
76,796 KB
testcase_11 AC 775 ms
76,660 KB
testcase_12 AC 773 ms
76,544 KB
testcase_13 AC 741 ms
76,800 KB
testcase_14 AC 737 ms
76,672 KB
testcase_15 AC 789 ms
76,672 KB
testcase_16 AC 783 ms
76,496 KB
testcase_17 AC 793 ms
76,544 KB
testcase_18 AC 854 ms
76,464 KB
testcase_19 AC 845 ms
77,156 KB
testcase_20 AC 821 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, S):
    if bin(n).count("1") == 1:
        if (n <= 2) ^ (S == "Even"):
            print("Alice")
        else:
            print("Bob")
    elif n % 2 == 1:
        print("Alice")
    else:
        print("Bob")


for _ in range(int(input())):
    n, S = input().split()
    solve(int(n), S)
0