結果

問題 No.1183 コイン遊び
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-08-22 15:11:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 18,960 KB
最終ジャッジ日時 2024-11-14 23:33:30
合計ジャッジ時間 5,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 84 ms
12,844 KB
testcase_13 AC 75 ms
11,868 KB
testcase_14 AC 124 ms
17,820 KB
testcase_15 AC 134 ms
18,840 KB
testcase_16 AC 131 ms
18,856 KB
testcase_17 AC 132 ms
18,784 KB
testcase_18 AC 134 ms
18,836 KB
testcase_19 AC 133 ms
18,928 KB
testcase_20 AC 131 ms
18,816 KB
testcase_21 AC 119 ms
18,960 KB
testcase_22 AC 114 ms
18,688 KB
testcase_23 AC 115 ms
18,780 KB
testcase_24 AC 115 ms
18,684 KB
testcase_25 AC 132 ms
18,688 KB
testcase_26 AC 133 ms
18,876 KB
testcase_27 AC 132 ms
18,912 KB
testcase_28 AC 133 ms
18,780 KB
testcase_29 AC 119 ms
18,688 KB
testcase_30 AC 115 ms
18,816 KB
testcase_31 AC 132 ms
18,900 KB
testcase_32 AC 132 ms
18,864 KB
testcase_33 AC 134 ms
18,880 KB
testcase_34 AC 132 ms
18,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
#include<vector>
using namespace std;
using i32 = int_fast32_t;
using i64 = int_fast64_t;
#define rep(i, n) for (i32 i = 0; i < (i32)(n); i++)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
using P = pair<i64,i64>;

int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
i32 n;
cin >> n;
vector<i32> a(n),b(n);
rep(i,n) cin >> a[i];
rep(j,n) cin >> b[j];
i32 cnt = 0;
i32 tmp = 0;
rep(i,n){
    if(a[i] != b[i])tmp++;
    else tmp = 0;
    if(tmp == 1)cnt++;
}
cout << cnt << endl;
}
0