結果

問題 No.1183 コイン遊び
ユーザー tamatotamato
提出日時 2020-08-29 20:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 275,840 KB
最終ジャッジ日時 2024-11-14 17:42:09
合計ジャッジ時間 11,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,540 KB
testcase_01 AC 37 ms
53,660 KB
testcase_02 AC 37 ms
53,568 KB
testcase_03 AC 37 ms
53,576 KB
testcase_04 AC 38 ms
52,884 KB
testcase_05 AC 36 ms
53,204 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 37 ms
52,672 KB
testcase_08 AC 41 ms
60,136 KB
testcase_09 AC 41 ms
58,892 KB
testcase_10 AC 50 ms
68,580 KB
testcase_11 AC 63 ms
86,120 KB
testcase_12 AC 252 ms
208,320 KB
testcase_13 AC 222 ms
189,096 KB
testcase_14 AC 341 ms
253,480 KB
testcase_15 AC 350 ms
275,788 KB
testcase_16 AC 357 ms
275,732 KB
testcase_17 AC 354 ms
275,348 KB
testcase_18 AC 347 ms
275,124 KB
testcase_19 AC 348 ms
275,648 KB
testcase_20 AC 361 ms
275,604 KB
testcase_21 AC 331 ms
275,192 KB
testcase_22 AC 331 ms
275,600 KB
testcase_23 AC 328 ms
275,552 KB
testcase_24 AC 330 ms
275,080 KB
testcase_25 AC 354 ms
275,724 KB
testcase_26 AC 354 ms
275,840 KB
testcase_27 AC 349 ms
275,300 KB
testcase_28 AC 346 ms
275,444 KB
testcase_29 AC 326 ms
275,720 KB
testcase_30 AC 339 ms
275,336 KB
testcase_31 AC 355 ms
275,600 KB
testcase_32 AC 353 ms
275,392 KB
testcase_33 AC 349 ms
275,644 KB
testcase_34 AC 355 ms
275,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    ans = 0
    flg = 0
    for a, b in zip(A, B):
        if flg == 0:
            if a != b:
                flg = 1
        else:
            if a == b:
                flg = 0
                ans += 1
    if flg == 1:
        ans += 1
    print(ans)


if __name__ == '__main__':
    main()
0