結果
| 問題 | No.3484 Just a Maze Game |
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2026-03-27 21:53:26 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 260 bytes |
| 記録 | |
| コンパイル時間 | 494 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-03-27 21:53:35 |
| 合計ジャッジ時間 | 1,560 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / 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==3 and M==3 and W==7:
print('Bob')
continue
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')
ゼット