結果
| 問題 |
No.197 手品
|
| コンテスト | |
| ユーザー |
latte0119
|
| 提出日時 | 2015-04-29 21:16:01 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 682 bytes |
| コンパイル時間 | 1,399 ms |
| コンパイル使用メモリ | 166,272 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-20 03:37:06 |
| 合計ジャッジ時間 | 2,439 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 43 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
bool solve(string s,string t){
set<string>S;
for(int i=0;i<=2;i+=2){
swap(s[1],s[i]);
S.insert(s);
swap(s[1],s[i]);
}
if(S.find(t)!=S.end())return true;
return false;
}
int main(){
string s,t;
int n;
cin>>s>>n>>t;
if(count(s.begin(),s.end(),'o')!=count(t.begin(),t.end(),'o')){
cout<<"SUCCESS"<<endl;
}
else if(n==0){
if(s==t)cout<<"FAILURE"<<endl;
else cout<<"SUCCESS"<<endl;
}
else if(n==1){
cout<<(solve(s,t)?"FAILURE":"SUCCESS")<<endl;
return 0;
}
else{
cout<<"FAILURE"<<endl;
}
return 0;
}
latte0119