結果
| 問題 | No.3484 Just a Maze Game |
| コンテスト | |
| ユーザー |
tau1235
|
| 提出日時 | 2026-03-27 21:49:12 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 3,136 ms |
| コンパイル使用メモリ | 330,004 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-27 21:49:30 |
| 合計ジャッジ時間 | 7,763 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 WA * 9 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
void solve(){
int n,m,b,w;
cin>>n>>m>>b>>w;
if (n==1||m==1) cout<<"Bob\n";
else if (w>=4) cout<<"Alice\n";
else cout<<"Bob\n";
}
int main(){
int t;
cin>>t;
while (t--) solve();
}
tau1235