結果

問題 No.2760 not fair position game
ユーザー Navier_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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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