結果

問題 No.1183 コイン遊び
ユーザー kokatsukokatsu
提出日時 2022-04-16 20:12:12
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 215,152 KB
実行使用メモリ 53,264 KB
最終ジャッジ日時 2024-06-22 14:57:23
合計ジャッジ時間 8,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 11 ms
8,140 KB
testcase_12 AC 91 ms
28,000 KB
testcase_13 AC 81 ms
28,156 KB
testcase_14 AC 153 ms
49,484 KB
testcase_15 AC 157 ms
50,612 KB
testcase_16 AC 152 ms
51,244 KB
testcase_17 AC 157 ms
51,304 KB
testcase_18 AC 157 ms
51,176 KB
testcase_19 AC 152 ms
51,384 KB
testcase_20 AC 156 ms
53,264 KB
testcase_21 AC 150 ms
51,200 KB
testcase_22 AC 147 ms
51,336 KB
testcase_23 AC 152 ms
51,240 KB
testcase_24 AC 151 ms
51,332 KB
testcase_25 AC 156 ms
51,364 KB
testcase_26 AC 160 ms
51,304 KB
testcase_27 AC 154 ms
51,280 KB
testcase_28 AC 158 ms
51,356 KB
testcase_29 AC 149 ms
51,260 KB
testcase_30 AC 152 ms
51,300 KB
testcase_31 AC 152 ms
51,220 KB
testcase_32 AC 153 ms
51,236 KB
testcase_33 AC 153 ms
51,364 KB
testcase_34 AC 151 ms
50,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N;
    readf("%d\n", N);

    auto A = readln.chomp.split.to!(int[]);
    auto B = readln.chomp.split.to!(int[]);

    int res;
    bool rev;
    foreach (a, b; zip(A, B)) {
        if (a == b) {
            if (rev) {
                ++res;
                rev = false;
            }
        }
        else {
            rev = true;
        }
    }
    if (rev) ++res;

    res.writeln;
}
0