結果

問題 No.2760 not fair position game
ユーザー Navier_Boltzmann
提出日時 2024-07-06 15:14:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 55,680 KB
最終ジャッジ日時 2024-07-06 15:14:52
合計ジャッジ時間 1,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 WA * 7
権限があれば一括ダウンロードができます

ソースコード

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:
    print('Bob')
else:
    print('Alice')
0