結果

問題 No.3484 Just a Maze Game
コンテスト
ユーザー ルク
提出日時 2026-03-27 23:00:10
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 517 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,355 ms
コンパイル使用メモリ 84,928 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2026-03-27 23:00:18
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 15 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import heapq
from itertools import product
from itertools import permutations
import random
import math
import bisect
import sys
from collections import defaultdict
from itertools import combinations


inf = 1 << 60


def exit():
    sys.exit()


def LI():
    return list(map(int, input().split()))


def II():
    return int(input())


def SI():
    return input()


t = II()
for _ in range(t):
    n, m, b, w = LI()
    if n >= 2 and m >= 2 and n*m-4 >= b:
        print("Alice")
        continue
    print("Bob")
0