結果
| 問題 | No.3484 Just a Maze Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-27 23:00:10 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 517 bytes |
| 記録 | |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 88,576 KB |
| 最終ジャッジ日時 | 2026-08-09 12:10:37 |
| 合計ジャッジ時間 | 4,356 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 WA * 9 |
ソースコード
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")