結果

問題 No.1183 コイン遊び
ユーザー poohbearpoohbear
提出日時 2020-08-22 13:15:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 208,904 KB
実行使用メモリ 19,272 KB
最終ジャッジ日時 2024-10-15 07:27:31
合計ジャッジ時間 10,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 23 ms
5,248 KB
testcase_12 AC 205 ms
13,108 KB
testcase_13 AC 180 ms
12,048 KB
testcase_14 AC 302 ms
18,008 KB
testcase_15 AC 323 ms
19,172 KB
testcase_16 AC 320 ms
19,072 KB
testcase_17 AC 322 ms
19,112 KB
testcase_18 AC 323 ms
19,044 KB
testcase_19 AC 318 ms
19,144 KB
testcase_20 AC 323 ms
19,076 KB
testcase_21 AC 294 ms
19,164 KB
testcase_22 AC 301 ms
19,044 KB
testcase_23 AC 311 ms
19,116 KB
testcase_24 AC 315 ms
19,048 KB
testcase_25 AC 319 ms
19,184 KB
testcase_26 AC 320 ms
19,052 KB
testcase_27 AC 323 ms
19,272 KB
testcase_28 AC 320 ms
19,160 KB
testcase_29 AC 296 ms
19,044 KB
testcase_30 AC 308 ms
19,092 KB
testcase_31 AC 325 ms
19,080 KB
testcase_32 AC 322 ms
19,136 KB
testcase_33 AC 322 ms
19,188 KB
testcase_34 AC 320 ms
19,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(a,n) for (ll a = 0; a < (n); ++a)
using namespace std;
using ll = long long;
typedef pair<ll,ll> P;
typedef pair<P,ll> PP;
typedef vector<vector<ll> > Graph;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const ll INF = 1e18;



int main(){
    ll n;
    cin >> n;
    vector<ll>a(n),b(n);
    rep(i,n)cin>>a[i];
    rep(i,n)cin>>b[i];
    ll cnt = 0;
    vector<bool>same;
    same.push_back(true);
    rep(i,n){
        if(a[i]==b[i]){
            same.push_back(true);
        }
        else{
            same.push_back(false);
        }
    }
    same.push_back(true);
    rep(i,n+1){
        if(same[i]&&(!same[i+1]))cnt++;
    }
    cout << cnt << endl;
    return 0;
}
0