結果
| 問題 | No.3484 Just a Maze Game |
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2026-03-27 21:50:51 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 201 bytes |
| 記録 | |
| コンパイル時間 | 187 ms |
| コンパイル使用メモリ | 85,492 KB |
| 実行使用メモリ | 78,680 KB |
| 最終ジャッジ日時 | 2026-03-27 21:50:55 |
| 合計ジャッジ時間 | 2,777 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 19 WA * 5 |
ソースコード
Q=int(input())
for _ in range(Q):
N,M,H,W=map(int,input().split())
if N==1 or M==1 or W==3:
print('Bob')
else:
if min(N,M)==2 and W%2==1:
print('Bob')
else:
print('Alice')
ゼット