結果

問題 No.2760 not fair position game
ユーザー Navier_BoltzmannNavier_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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,424 KB
testcase_01 AC 41 ms
55,168 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
55,424 KB
testcase_08 AC 43 ms
54,912 KB
testcase_09 AC 43 ms
54,784 KB
testcase_10 AC 41 ms
54,912 KB
testcase_11 WA -
testcase_12 AC 42 ms
55,040 KB
testcase_13 AC 41 ms
55,680 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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