結果

問題 No.2760 not fair position game
ユーザー PNJPNJ
提出日時 2024-05-17 21:57:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-05-17 21:57:30
合計ジャッジ時間 1,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,120 KB
testcase_01 AC 51 ms
53,068 KB
testcase_02 AC 46 ms
52,188 KB
testcase_03 AC 45 ms
52,396 KB
testcase_04 AC 45 ms
52,736 KB
testcase_05 AC 47 ms
52,640 KB
testcase_06 AC 45 ms
51,936 KB
testcase_07 AC 44 ms
52,732 KB
testcase_08 AC 43 ms
52,248 KB
testcase_09 AC 45 ms
52,544 KB
testcase_10 AC 45 ms
52,852 KB
testcase_11 AC 44 ms
52,612 KB
testcase_12 AC 44 ms
52,436 KB
testcase_13 AC 45 ms
52,580 KB
testcase_14 AC 44 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
ans = 'Bob'
if N % 2:
  ans = 'Alice'
print(ans)
0