結果

問題 No.1183 コイン遊び
ユーザー CELICACELICA
提出日時 2020-08-23 10:15:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 166,660 KB
実行使用メモリ 10,840 KB
最終ジャッジ日時 2024-10-15 18:03:02
合計ジャッジ時間 5,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 25 ms
7,380 KB
testcase_13 AC 7 ms
6,748 KB
testcase_14 AC 10 ms
8,792 KB
testcase_15 AC 10 ms
8,196 KB
testcase_16 AC 11 ms
10,840 KB
testcase_17 AC 11 ms
10,712 KB
testcase_18 AC 11 ms
10,836 KB
testcase_19 AC 12 ms
10,708 KB
testcase_20 AC 11 ms
10,712 KB
testcase_21 AC 11 ms
10,840 KB
testcase_22 AC 11 ms
10,716 KB
testcase_23 AC 11 ms
10,712 KB
testcase_24 AC 11 ms
10,712 KB
testcase_25 AC 11 ms
10,812 KB
testcase_26 AC 11 ms
10,588 KB
testcase_27 AC 12 ms
10,708 KB
testcase_28 AC 11 ms
10,712 KB
testcase_29 AC 12 ms
10,836 KB
testcase_30 AC 14 ms
10,584 KB
testcase_31 AC 27 ms
10,712 KB
testcase_32 AC 13 ms
10,712 KB
testcase_33 AC 11 ms
10,588 KB
testcase_34 AC 11 ms
8,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ul = unsigned long;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n;
    cin >> n;

    string sa, sb;
    cin.ignore();
    getline(cin, sa);
    getline(cin, sb);

    int res{sa[0] != sb[0]};
    for (int i = 0; i < n * 2 - 3; i += 2)
        res += (sa[i] != sa[i + 2]) != (sb[i] != sb[i + 2]);
    
    cout << ++res / 2 << "\n";

    return 0;
}
0