結果
問題 | No.1183 コイン遊び |
ユーザー |
|
提出日時 | 2020-08-22 17:05:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 318 ms / 2,000 ms |
コード長 | 291 bytes |
コンパイル時間 | 1,536 ms |
コンパイル使用メモリ | 169,704 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-10-15 11:02:29 |
合計ジャッジ時間 | 10,147 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int N; cin>>N; vector<int> A(N),B(N); for(int &i:A)cin>>i; for(int &i:B)cin>>i; int n=0,ans=0; for(int i=0;i<N;i++){ if(n==0 && A[i]!=B[i])ans++; n=(A[i]+B[i])%2; } cout<<ans<<endl; }