結果
問題 | No.197 手品 |
ユーザー |
|
提出日時 | 2017-07-12 16:36:10 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,353 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 80,896 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 13:47:43 |
合計ジャッジ時間 | 1,973 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 31 WA * 12 |
ソースコード
#include<cstdio> #include<iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #include<limits> using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef pair<ll, ll> pl; typedef pair<ll, string> pls; int main() { string s_before, s_after; ll N,o_num_b=0,o_num_a= 0,x_num_a = 0,x_num_b = 0; string ans; cin >> s_before >> N >> s_after; for (int i = 0; i < s_before.size(); i++) { if (s_before[i] == 'o')o_num_b++; else x_num_b++; } for (int i = 0; i < s_after.size(); i++) { if (s_after[i] == 'o')o_num_a++; else x_num_a++; } if (s_before == "ooo" && s_after == "ooo") { ans = "SUCCESS"; } else if ((o_num_b != o_num_a) || (x_num_a != x_num_b)) { ans = "SUCCESS"; } else { char c; if (o_num_b < x_num_a)c = 'o'; else c = 'x'; int s_ind_bef; for (int i = 0; i < s_before.size(); i++) { if (s_before[i] == c)s_ind_bef = i; } int s_ind_aft; for (int i = 0; i < s_after.size(); i++) { if (s_after[i] == c)s_ind_aft = i; } int d = abs(s_ind_bef - s_ind_aft); if (N == 0) { if (s_before == s_after)ans = "FAILRE"; else ans = "SUCCESS"; } else if (N > 1) ans = "FAILURE"; else ans = "SUCCESS"; } cout << ans << endl; return 0; }