結果

問題 No.2814 Block Game
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-15 19:28:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 77,100 KB
最終ジャッジ日時 2024-07-15 19:31:33
合計ジャッジ時間 12,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,144 KB
testcase_01 AC 508 ms
76,512 KB
testcase_02 AC 498 ms
76,512 KB
testcase_03 AC 495 ms
76,584 KB
testcase_04 AC 501 ms
76,552 KB
testcase_05 AC 510 ms
77,100 KB
testcase_06 AC 484 ms
76,984 KB
testcase_07 AC 523 ms
76,256 KB
testcase_08 AC 513 ms
76,452 KB
testcase_09 AC 488 ms
76,652 KB
testcase_10 AC 491 ms
76,692 KB
testcase_11 AC 494 ms
76,700 KB
testcase_12 AC 519 ms
76,756 KB
testcase_13 AC 505 ms
76,428 KB
testcase_14 AC 501 ms
76,768 KB
testcase_15 AC 489 ms
76,612 KB
testcase_16 AC 529 ms
76,844 KB
testcase_17 AC 481 ms
76,440 KB
testcase_18 AC 497 ms
76,428 KB
testcase_19 AC 533 ms
76,272 KB
testcase_20 AC 486 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
	N,S=input().split()
	if int(N)<=2:print("Alice" if S=="Odd" else "Bob")
	elif (int(N)&-int(N))==int(N):print("Alice" if S=="Even" else "Bob")
	else:print("Alice" if int(N)%2 else "Bob")
0