結果
| 問題 | No.3484 Just a Maze Game |
| コンテスト | |
| ユーザー |
tau1235
|
| 提出日時 | 2026-03-27 21:49:12 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 2,365 ms |
| コンパイル使用メモリ | 328,728 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-09 10:20:26 |
| 合計ジャッジ時間 | 3,504 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_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