結果

問題 No.2814 Block Game
ユーザー zeta7532zeta7532
提出日時 2024-07-18 00:43:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 201,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 00:43:43
合計ジャッジ時間 14,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 476 ms
5,376 KB
testcase_02 AC 433 ms
5,376 KB
testcase_03 AC 446 ms
5,376 KB
testcase_04 AC 426 ms
5,376 KB
testcase_05 AC 440 ms
5,376 KB
testcase_06 AC 463 ms
5,376 KB
testcase_07 AC 437 ms
5,376 KB
testcase_08 AC 430 ms
5,376 KB
testcase_09 AC 448 ms
5,376 KB
testcase_10 AC 437 ms
5,376 KB
testcase_11 AC 462 ms
5,376 KB
testcase_12 AC 438 ms
5,376 KB
testcase_13 AC 427 ms
5,376 KB
testcase_14 AC 452 ms
5,376 KB
testcase_15 AC 429 ms
5,376 KB
testcase_16 AC 458 ms
5,376 KB
testcase_17 AC 435 ms
5,376 KB
testcase_18 AC 430 ms
5,376 KB
testcase_19 AC 457 ms
5,376 KB
testcase_20 AC 431 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)

int main() {
    ll T;
    cin >> T;
    while(T--){
        ll N;
        cin >> N;
        string s;
        cin >> s;
        ll X=N;
        while(X%2==0) X/=2;
        bool ok=true;
        if(X==1){
            if(s=="Odd"&&N>=4) ok=false;
            if(s=="Even"&&N<4) ok=false;
        }else{
            if(N%2==0) ok=false;
        }
        if(ok){
            cout << "Alice" << endl;
        }else{
            cout << "Bob" << endl;
        }
    }
    return 0;
}
0