結果
問題 |
No.2814 Block Game
|
ユーザー |
|
提出日時 | 2024-07-15 19:34:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 20 |
ソースコード
//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; } } }