結果
問題 | No.2278 Time Bomb Game 2 |
ユーザー |
|
提出日時 | 2023-04-21 22:22:05 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 962 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 84,684 KB |
最終ジャッジ日時 | 2025-02-12 11:56:59 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 69 WA * 1 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:31:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 31 | scanf("%d %d %d", &n, &k, &t); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:32:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 32 | scanf("%s", ib); | ~~~~~^~~~~~~~~~
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> #include <map> #include <vector> #include <queue> #include <deque> #include <set> #include <stack> #include <algorithm> #include <array> #include <unordered_set> #include <unordered_map> #include <string> using namespace std; bool rcmp(int a, int b) { return a>b; } typedef long long LL; class mypcmp { public: bool operator()(const int& a, const int& b) { return a<b; } }; char ib[200004]; int main() { int n, i, k, t, m, d; scanf("%d %d %d", &n, &k, &t); scanf("%s", ib); k--; for (i=k; i<n; i++) if (ib[i]!=ib[k]) break; d=i-k; m=0; if (i<n&&t>=d) { d = t-d; if ((d&1)==0) m=1; } if (m==0) { for (i=k; i>=0; i--) if (ib[i]!=ib[k]) break; d=k-i; if (i>=0&&t>=d) { d=t-d; if ((d&1)==0) m=1; } } if (ib[k]=='B') m^=1; if (m) printf("Alice\n"); else printf("Bob\n"); return 0; }