結果
問題 | No.2209 Flip and Reverse |
ユーザー |
|
提出日時 | 2023-02-11 17:02:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 434 bytes |
コンパイル時間 | 1,884 ms |
コンパイル使用メモリ | 194,568 KB |
最終ジャッジ日時 | 2025-02-10 14:25:02 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll=long long;using pii=pair<int,int>;#define all(a) a.begin(),a.end()#define pb push_back#define sz(a) ((int)a.size())signed main(){ios_base::sync_with_stdio(0),cin.tie(0);int n; string s,t; cin >> n >> s >> t;if((count(all(s),'1')+count(all(t),'1'))&1) reverse(all(t));int res=0;for(int i=0; i<n; ++i) if(s[i]!=t[i]) res++;cout << res << "\n";}