結果
| 問題 |
No.2629 A replace B replace C
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-16 23:42:08 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 859 bytes |
| コンパイル時間 | 1,771 ms |
| コンパイル使用メモリ | 168,088 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-09-28 22:43:22 |
| 合計ジャッジ時間 | 2,849 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 WA * 1 |
| other | AC * 54 WA * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#else
#define debug(...)
#endif
#ifdef LOCAL
#define __int128 long long
#endif // LOCAL
const int inf=1e18;
int32_t main()
{
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n;cin>>n;string s,t;cin>>s>>t;
int c[3]={0};
for(int i=0;i<n;++i)
{
if(s[i]==t[i]) continue;
if(t[i]==s[i]+1) {++c[s[i]-'A'];}
else if(t[i]==s[i]+2) {++c[3];}
else {cout<<"No";return 0;}
}
if(accumulate(c,c+3,0LL)==0) {cout<<"Yes";return 0;}
if(c[0]!=c[1]) {cout<<"No";return 0;}
if(c[2] && !c[0] && !c[1]) {cout<<"No";return 0;}
cout<<"Yes";
return 0;
}