結果

問題 No.1183 コイン遊び
ユーザー chacoder1chacoder1
提出日時 2020-08-22 13:41:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 200,828 KB
実行使用メモリ 11,304 KB
最終ジャッジ日時 2024-10-15 07:57:08
合計ジャッジ時間 10,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 21 ms
7,860 KB
testcase_12 AC 189 ms
9,860 KB
testcase_13 AC 168 ms
9,536 KB
testcase_14 AC 276 ms
11,000 KB
testcase_15 AC 299 ms
11,200 KB
testcase_16 AC 300 ms
11,268 KB
testcase_17 AC 299 ms
11,300 KB
testcase_18 AC 298 ms
11,284 KB
testcase_19 AC 298 ms
11,288 KB
testcase_20 AC 303 ms
11,252 KB
testcase_21 AC 290 ms
11,116 KB
testcase_22 AC 295 ms
11,200 KB
testcase_23 AC 298 ms
11,304 KB
testcase_24 AC 295 ms
11,164 KB
testcase_25 AC 303 ms
11,192 KB
testcase_26 AC 307 ms
11,132 KB
testcase_27 AC 305 ms
11,264 KB
testcase_28 AC 304 ms
11,284 KB
testcase_29 AC 283 ms
11,292 KB
testcase_30 AC 291 ms
11,260 KB
testcase_31 AC 301 ms
11,240 KB
testcase_32 AC 303 ms
11,172 KB
testcase_33 AC 299 ms
11,236 KB
testcase_34 AC 301 ms
11,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int N;
  cin>>N;
  int a[1001000];
  int b[1001000];
  for(int i=0;i<N;i++){
    cin>>a[i];
  }
  for(int i=0;i<N;i++){
    cin>>b[i];
    //cout<<i<<" "<<a[i]<<" "<<b[i]<<endl;
  }
  int cnt=0;
  int flag=1;
  for(int i=0;i<N;i++){
    //cout<<i<<" "<<flag<<" "<<a[i] <<" "<<b[i]   <<endl;
    if(flag == 1 && a[i]!=b[i]){
      flag=0;
      cnt++;
    }
    else if(flag==0 && a[i]==b[i]){
      flag=1;
    } 
  }  
  cout<<cnt<<endl;
  
  return 0;
}

  
       
       
0