結果
| 問題 |
No.2814 Block Game
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-15 19:32:38 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 893 bytes |
| コンパイル時間 | 2,946 ms |
| コンパイル使用メモリ | 246,888 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-15 19:32:54 |
| 合計ジャッジ時間 | 14,336 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 20 |
ソースコード
//Yoyoyoのを変更に追従させたやつ
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main()
{
int T;
cin>>T;
for(int i=0; i<T; i++){
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;
}
continue;
}
}
if (N % 2)
{
cout << "Alice" << endl;
}
else
{
cout << "Bob" << endl;
}
}
}