結果
| 問題 | No.2629 A replace B replace C | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-02-16 23:23:40 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 662 bytes | 
| コンパイル時間 | 1,894 ms | 
| コンパイル使用メモリ | 167,768 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-09-28 22:13:57 | 
| 合計ジャッジ時間 | 3,597 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 45 WA * 16 | 
ソースコード
#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;
    for(int i=n-2;i>=0;--i)
    {
        if(s[i]=='A' && t[i+1]=='C' && s[i+1]=='B')
        {
            s[i]++;s[i+1]++;
        }
    }
    cout<<(s==t ? "Yes" : "No");
    return 0;
}
            
            
            
        