結果

問題 No.1183 コイン遊び
ユーザー DaYuanChiDaYuanChi
提出日時 2021-04-01 20:41:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 169,120 KB
実行使用メモリ 15,088 KB
最終ジャッジ日時 2024-12-20 03:11:35
合計ジャッジ時間 11,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 9 ms
6,816 KB
testcase_11 AC 21 ms
6,816 KB
testcase_12 AC 202 ms
10,496 KB
testcase_13 AC 181 ms
9,728 KB
testcase_14 AC 300 ms
14,056 KB
testcase_15 AC 320 ms
14,780 KB
testcase_16 AC 322 ms
15,088 KB
testcase_17 AC 322 ms
14,856 KB
testcase_18 AC 325 ms
14,904 KB
testcase_19 AC 326 ms
14,808 KB
testcase_20 AC 322 ms
14,892 KB
testcase_21 AC 306 ms
14,748 KB
testcase_22 AC 314 ms
14,820 KB
testcase_23 AC 323 ms
14,752 KB
testcase_24 AC 326 ms
14,932 KB
testcase_25 AC 322 ms
14,920 KB
testcase_26 AC 324 ms
14,744 KB
testcase_27 AC 321 ms
14,924 KB
testcase_28 AC 323 ms
15,020 KB
testcase_29 AC 308 ms
14,932 KB
testcase_30 AC 314 ms
14,820 KB
testcase_31 AC 327 ms
14,820 KB
testcase_32 AC 321 ms
14,936 KB
testcase_33 AC 321 ms
14,816 KB
testcase_34 AC 322 ms
14,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
  int n; cin >> n;
  vector<int> a(n), b(n), c(n);
  for(int i = 0; i < n; i++) cin >> a[i];
  for(int i = 0; i < n; i++) cin >> b[i];
  for(int i = 0; i < n; i++) c[i] = a[i]^b[i];
  int ans = 0;
  for(int i = 0; i < n-1; i++){
    if(c[i]==1 && c[i+1]==0) ans++;
  }
  if(c[n-1]==1) ans++;
  cout << ans << endl;
  return 0;
}
  
0