結果
問題 |
No.2629 A replace B replace C
|
ユーザー |
|
提出日時 | 2024-02-16 23:38:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 1,540 ms |
コンパイル使用メモリ | 167,916 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-28 22:41:40 |
合計ジャッジ時間 | 3,274 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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-1;i>=0;--i) { if(s[i]==t[i]) continue; if(s[i]!=t[i]) { if(i==0 || s[i]!='B' || s[i-1]!='A' || t[i]!='C') { cout<<"No";return 0; } s[i]++;s[i-1]++; } } cout<<"Yes"; return 0; }