結果

問題 No.1183 コイン遊び
ユーザー Example0911Example0911
提出日時 2020-08-22 13:02:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 168,212 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-15 07:02:57
合計ジャッジ時間 5,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 10 ms
5,248 KB
testcase_12 AC 81 ms
12,928 KB
testcase_13 AC 73 ms
11,904 KB
testcase_14 AC 119 ms
17,880 KB
testcase_15 AC 129 ms
18,816 KB
testcase_16 AC 132 ms
18,816 KB
testcase_17 AC 129 ms
18,816 KB
testcase_18 AC 129 ms
18,816 KB
testcase_19 AC 126 ms
18,816 KB
testcase_20 AC 130 ms
18,688 KB
testcase_21 AC 110 ms
18,816 KB
testcase_22 AC 111 ms
18,816 KB
testcase_23 AC 110 ms
18,816 KB
testcase_24 AC 112 ms
18,684 KB
testcase_25 AC 129 ms
18,816 KB
testcase_26 AC 128 ms
18,816 KB
testcase_27 AC 129 ms
18,816 KB
testcase_28 AC 129 ms
18,816 KB
testcase_29 AC 112 ms
18,816 KB
testcase_30 AC 111 ms
18,816 KB
testcase_31 AC 129 ms
18,816 KB
testcase_32 AC 131 ms
18,944 KB
testcase_33 AC 128 ms
18,816 KB
testcase_34 AC 128 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

// コンテスト中のみ
//#define int long long

#define ll long long
#define rep(i,n) for(int i = 0; i < (n); i++)
#define P pair<ll,ll>
#define ld long double
ll INF = (1LL << 60);
int MOD = 1000000007;


signed main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	ll N; cin >> N;
	vector<ll>A(N), B(N); rep(i, N)cin >> A[i];
	rep(i, N)cin >> B[i];
	bool now = false;
	ll ans = 0;
	rep(i, N) {
		if (A[i] != B[i]) {
			now = true;
		}
		else {
			if (now) {
				ans++; now = false;
			}
		}
	}if (now) {
		ans++; now = false;
	}
	cout << ans << endl;
	return 0;
}
0