結果

問題 No.2814 Block Game
ユーザー makichanmakichan
提出日時 2024-07-19 22:46:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,239 bytes
コンパイル時間 5,439 ms
コンパイル使用メモリ 311,180 KB
実行使用メモリ 11,728 KB
最終ジャッジ日時 2024-07-19 22:46:42
合計ジャッジ時間 11,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

template<typename T>
void compress(vector<T>&a, bool is_unique=false){
    auto b=a;
    sort(b.begin(),b.end());
    if(is_unique){
        auto p=unique(b.begin(),b.end());
        b.erase(p,b.end());
    }
    for(auto&x:a)x=lower_bound(b.begin(),b.end(),x)-b.begin();
}

int main(){
    int T;
    cin >> T;
    vector<string> out;
    rep(t,0,T){
        ll n;
        cin >> n;
        string s;
        cin >> s;
        if(n==1){
            if(s=="Even")out.push_back("Bob");
            else out.push_back("Alice");
        }
        else if(n%4==0){
            out.push_back("Bob");
        }
        else if(n%4==1){
            out.push_back("Alice");
        }
        else if(n%4==2){
            if(s=="Even")out.push_back("Bob");
            else out.push_back("Alice");
        }
        else out.push_back("Alice");
    }
    for(auto x:out)cout << x << "\n";
}
0