結果

問題 No.1183 コイン遊び
ユーザー kokatsukokatsu
提出日時 2022-04-16 20:13:14
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 209,404 KB
実行使用メモリ 51,472 KB
最終ジャッジ日時 2024-06-22 14:57:36
合計ジャッジ時間 6,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 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,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 10 ms
6,960 KB
testcase_12 AC 91 ms
28,652 KB
testcase_13 AC 79 ms
27,976 KB
testcase_14 AC 151 ms
49,004 KB
testcase_15 AC 151 ms
50,436 KB
testcase_16 AC 150 ms
51,252 KB
testcase_17 AC 151 ms
51,228 KB
testcase_18 AC 151 ms
51,100 KB
testcase_19 AC 162 ms
51,204 KB
testcase_20 AC 151 ms
51,348 KB
testcase_21 AC 147 ms
51,324 KB
testcase_22 AC 147 ms
51,372 KB
testcase_23 AC 145 ms
51,180 KB
testcase_24 AC 142 ms
51,224 KB
testcase_25 AC 150 ms
51,192 KB
testcase_26 AC 152 ms
51,236 KB
testcase_27 AC 150 ms
51,284 KB
testcase_28 AC 151 ms
51,472 KB
testcase_29 AC 145 ms
51,164 KB
testcase_30 AC 145 ms
51,288 KB
testcase_31 AC 154 ms
51,252 KB
testcase_32 AC 163 ms
51,232 KB
testcase_33 AC 152 ms
51,408 KB
testcase_34 AC 151 ms
50,656 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 (i; 0 .. N) {
        if (A[i] == B[i]) {
            if (rev) {
                ++res;
                rev = false;
            }
        }
        else {
            rev = true;
        }
    }
    if (rev) ++res;

    res.writeln;
}
0