結果

問題 No.1183 コイン遊び
ユーザー ecto0310ecto0310
提出日時 2020-08-22 13:06:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 201,708 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-15 07:12:29
合計ジャッジ時間 10,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 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 7 ms
5,248 KB
testcase_11 AC 19 ms
5,248 KB
testcase_12 AC 191 ms
12,916 KB
testcase_13 AC 167 ms
11,904 KB
testcase_14 AC 282 ms
17,792 KB
testcase_15 AC 302 ms
18,768 KB
testcase_16 AC 300 ms
18,688 KB
testcase_17 AC 310 ms
18,788 KB
testcase_18 AC 306 ms
18,944 KB
testcase_19 AC 301 ms
18,816 KB
testcase_20 AC 312 ms
18,816 KB
testcase_21 AC 292 ms
18,816 KB
testcase_22 AC 294 ms
18,688 KB
testcase_23 AC 301 ms
18,816 KB
testcase_24 AC 307 ms
18,816 KB
testcase_25 AC 304 ms
18,816 KB
testcase_26 AC 305 ms
18,944 KB
testcase_27 AC 314 ms
18,816 KB
testcase_28 AC 310 ms
18,944 KB
testcase_29 AC 292 ms
18,816 KB
testcase_30 AC 296 ms
18,908 KB
testcase_31 AC 304 ms
18,816 KB
testcase_32 AC 304 ms
18,816 KB
testcase_33 AC 303 ms
18,920 KB
testcase_34 AC 299 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define endl "\n"

int main()
{
  i64 N;
  cin >> N;
  vector<i64> A(N), B(N);
  for (i64 i = 0; i < N; i++)
    cin >> A[i];
  for (i64 i = 0; i < N; i++)
    cin >> B[i];
  i64 ans = 0;
  bool diff = false;
  for (i64 i = 0; i < N; i++)
    if (A[i] == B[i])
    {
      if (diff)
        ans++;
      diff = false;
    }
    else
    {
      diff = true;
    }
  if (diff)
    ans++;
  cout << ans << endl;
  return 0;
}
0