結果

問題 No.1183 コイン遊び
ユーザー karinohitokarinohito
提出日時 2022-11-09 16:06:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 202,616 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-22 22:04:02
合計ジャッジ時間 12,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 20 ms
6,944 KB
testcase_12 AC 198 ms
6,944 KB
testcase_13 AC 177 ms
6,944 KB
testcase_14 AC 290 ms
6,944 KB
testcase_15 AC 316 ms
7,168 KB
testcase_16 AC 316 ms
7,112 KB
testcase_17 AC 314 ms
6,960 KB
testcase_18 AC 316 ms
7,096 KB
testcase_19 AC 311 ms
7,040 KB
testcase_20 AC 312 ms
7,068 KB
testcase_21 AC 302 ms
7,124 KB
testcase_22 AC 301 ms
7,100 KB
testcase_23 AC 316 ms
7,064 KB
testcase_24 AC 312 ms
7,124 KB
testcase_25 AC 313 ms
7,144 KB
testcase_26 AC 310 ms
7,112 KB
testcase_27 AC 316 ms
7,124 KB
testcase_28 AC 310 ms
7,088 KB
testcase_29 AC 300 ms
7,028 KB
testcase_30 AC 307 ms
7,088 KB
testcase_31 AC 311 ms
7,144 KB
testcase_32 AC 311 ms
7,120 KB
testcase_33 AC 311 ms
7,164 KB
testcase_34 AC 312 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ld = long double;
int main() {
    int N;
    cin>>N;
    vector<int> A(N+2,0);
    for(int i=0;i<2;i++)for(int j=1;j<=N;j++){
        int p;
        cin>>p;
        A[j]=A[j]^p;
    }
    int an=0;
    for(int j=0;j<=N;j++)an+=(A[j]^A[j+1]);
    cout<<an/2<<endl;
}
0