結果

問題 No.1183 コイン遊び
ユーザー tor1atama1tor1atama1
提出日時 2021-08-22 19:40:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 164,216 KB
実行使用メモリ 11,220 KB
最終ジャッジ日時 2024-04-24 10:54:23
合計ジャッジ時間 10,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 192 ms
8,064 KB
testcase_13 AC 156 ms
7,552 KB
testcase_14 AC 263 ms
10,496 KB
testcase_15 AC 283 ms
11,008 KB
testcase_16 AC 288 ms
11,008 KB
testcase_17 AC 279 ms
11,008 KB
testcase_18 AC 287 ms
11,008 KB
testcase_19 AC 291 ms
11,004 KB
testcase_20 AC 282 ms
11,008 KB
testcase_21 AC 268 ms
11,136 KB
testcase_22 AC 277 ms
11,076 KB
testcase_23 AC 292 ms
11,220 KB
testcase_24 AC 295 ms
11,132 KB
testcase_25 AC 285 ms
11,008 KB
testcase_26 AC 298 ms
11,172 KB
testcase_27 AC 294 ms
11,128 KB
testcase_28 AC 290 ms
11,008 KB
testcase_29 AC 296 ms
11,176 KB
testcase_30 AC 284 ms
11,064 KB
testcase_31 AC 281 ms
11,136 KB
testcase_32 AC 287 ms
11,080 KB
testcase_33 AC 288 ms
11,084 KB
testcase_34 AC 285 ms
11,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
using ll=long long;
using ld=long double;
using vi=vector<int>;
using vvi=vector<vi>;
using vll=vector<ll>;
using vvll=vector<vll>;
using pii=pair<int,int>;
#define rep(i,n) for(int i=0;i<(n);i++)
#define sor(v) sort(v.begin(),v.end())
#define rev(v) reverse(v.begin(),v.end())
#define ALL(v) v.begin(),v.end()
#define pb push_back
template<class T>bool chmax(T &a, const T &b) {if (a<b) {a=b; return 1;} return 0;}
template<class T>bool chmin(T &a, const T &b) {if (b<a) {a=b; return 1;} return 0;}
template<class T>void printv(vector<T> v){ll n=v.size(); rep(i,n){cout<<v[i]; if(i==n-1)cout<<endl; else cout<<' ';}}
template<class T>void printvv(vector<vector<T>> v){for(auto V:v) printv(V);}
//constexpr int INF=1001001001;
//constexpr int mod=1e9+7;
//constexpr int mod=998244353;

int main(){
    int n; cin>>n;
    vi a(n),b(n);
    rep(i,n) cin>>a[i];
    rep(i,n) cin>>b[i];
    int ans=1;
    int pre=a[0]^b[0];
    rep(i,n) {
        if((a[i]^b[i])!=pre) ans++;
        pre=a[i]^b[i];
    }
    if(ans&1&&(a[0]^b[0])==1) ++ans;
    ans/=2;
    cout<<ans<<endl;
}
0