結果

問題 No.2760 not fair position game
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-07-06 15:15:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 57,120 KB
最終ジャッジ日時 2024-07-06 15:16:01
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,120 KB
testcase_01 AC 44 ms
55,516 KB
testcase_02 AC 44 ms
55,692 KB
testcase_03 AC 43 ms
56,592 KB
testcase_04 AC 45 ms
56,044 KB
testcase_05 AC 45 ms
55,248 KB
testcase_06 AC 42 ms
54,980 KB
testcase_07 AC 44 ms
56,124 KB
testcase_08 AC 46 ms
55,052 KB
testcase_09 AC 44 ms
55,176 KB
testcase_10 AC 43 ms
55,884 KB
testcase_11 AC 45 ms
56,100 KB
testcase_12 AC 43 ms
55,564 KB
testcase_13 AC 45 ms
56,568 KB
testcase_14 AC 44 ms
56,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math
# sys.setrecursionlimit(10**4)
input = sys.stdin.readline


N,K = map(int,input().split())

if N%2==0:
    print('Bob')
else:
    print('Alice')
0