結果

問題 No.2814 Block Game
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-15 19:34:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 2,912 ms
コンパイル使用メモリ 245,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-15 19:34:33
合計ジャッジ時間 14,394 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 433 ms
6,940 KB
testcase_02 AC 447 ms
6,940 KB
testcase_03 AC 421 ms
6,940 KB
testcase_04 AC 422 ms
6,940 KB
testcase_05 AC 453 ms
6,940 KB
testcase_06 AC 435 ms
6,940 KB
testcase_07 AC 461 ms
6,940 KB
testcase_08 AC 425 ms
6,944 KB
testcase_09 AC 422 ms
6,940 KB
testcase_10 AC 446 ms
6,944 KB
testcase_11 AC 434 ms
6,944 KB
testcase_12 AC 436 ms
6,944 KB
testcase_13 AC 439 ms
6,940 KB
testcase_14 AC 424 ms
6,940 KB
testcase_15 AC 429 ms
6,940 KB
testcase_16 AC 443 ms
6,940 KB
testcase_17 AC 429 ms
6,944 KB
testcase_18 AC 426 ms
6,940 KB
testcase_19 AC 429 ms
6,940 KB
testcase_20 AC 444 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//Yoyoyoのを変更に追従させたやつ
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main()
{
	int T;
	cin>>T;
	for(int t=0; t<T; t++){
	    ll N;
	    string s;
	    cin >> N >> s;
	    if (N == 1 || N == 2)
	    {
	        if (s == "Odd")
	        {
	            cout << "Alice" << endl;
	        }
	        else
	        {
	            cout << "Bob" << endl;
	        }
	        continue;
	    }
	    bool beki = false;
	    for (int i = 2; i <= 60; i++)
	    {
	        if ((1ll << i) == N)
	        {
	            if (s == "Odd")
	            {
	                cout << "Bob" << endl;
	            }
	            else
	            {
	                cout << "Alice" << endl;
	            }
	            beki=true;
	            break;
	        }
	    }
	    if(beki)continue;
	    if (N % 2)
	    {
	        cout << "Alice" << endl;
	    }
	    else
	    {
	        cout << "Bob" << endl;
	    }
	}
}
0