結果

問題 No.1183 コイン遊び
ユーザー DaYuanChiDaYuanChi
提出日時 2021-04-01 20:41:16
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 165,884 KB
実行使用メモリ 15,040 KB
最終ジャッジ日時 2023-08-23 02:06:10
合計ジャッジ時間 11,901 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 7 ms
4,380 KB
testcase_11 AC 19 ms
4,376 KB
testcase_12 AC 180 ms
10,428 KB
testcase_13 AC 162 ms
9,644 KB
testcase_14 AC 269 ms
14,004 KB
testcase_15 AC 287 ms
14,984 KB
testcase_16 AC 289 ms
14,744 KB
testcase_17 AC 286 ms
14,824 KB
testcase_18 AC 287 ms
14,740 KB
testcase_19 AC 288 ms
15,040 KB
testcase_20 AC 289 ms
14,840 KB
testcase_21 AC 271 ms
14,724 KB
testcase_22 AC 271 ms
14,780 KB
testcase_23 AC 288 ms
14,660 KB
testcase_24 AC 290 ms
14,716 KB
testcase_25 AC 287 ms
14,836 KB
testcase_26 AC 289 ms
14,904 KB
testcase_27 AC 286 ms
14,712 KB
testcase_28 AC 290 ms
14,736 KB
testcase_29 AC 269 ms
14,660 KB
testcase_30 AC 280 ms
14,776 KB
testcase_31 AC 287 ms
14,820 KB
testcase_32 AC 290 ms
14,716 KB
testcase_33 AC 286 ms
14,660 KB
testcase_34 AC 288 ms
14,992 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