結果

問題 No.1183 コイン遊び
ユーザー lemonlemon
提出日時 2021-05-10 11:41:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,916 KB
最終ジャッジ日時 2024-09-19 16:20:42
合計ジャッジ時間 16,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 40 ms
11,136 KB
testcase_11 AC 66 ms
12,272 KB
testcase_12 AC 421 ms
27,888 KB
testcase_13 AC 378 ms
25,956 KB
testcase_14 AC 622 ms
36,248 KB
testcase_15 AC 659 ms
38,296 KB
testcase_16 AC 660 ms
38,124 KB
testcase_17 AC 670 ms
38,004 KB
testcase_18 AC 665 ms
38,060 KB
testcase_19 AC 669 ms
38,000 KB
testcase_20 AC 659 ms
38,228 KB
testcase_21 AC 606 ms
38,436 KB
testcase_22 AC 598 ms
38,380 KB
testcase_23 AC 623 ms
38,000 KB
testcase_24 AC 624 ms
38,056 KB
testcase_25 AC 664 ms
37,928 KB
testcase_26 AC 659 ms
38,916 KB
testcase_27 AC 674 ms
38,060 KB
testcase_28 AC 661 ms
38,260 KB
testcase_29 AC 607 ms
38,056 KB
testcase_30 AC 689 ms
37,928 KB
testcase_31 AC 661 ms
38,120 KB
testcase_32 AC 661 ms
37,996 KB
testcase_33 AC 661 ms
37,996 KB
testcase_34 AC 660 ms
38,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
stdin = sys.stdin

ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
nsa = lambda: list(stdin.readline().split())
mod = 10 * 7 + 7

n = ni()
A = na()
B = na()

flag = 1
ans = 0



for i in range(n):
    if i == 0:
        if A[i] == B[i]:
            flag = 0
    else:
        if A[i] == B[i]:
            if flag:
                ans += 1
                flag = 0
        else:
            flag = 1

if flag:
    ans += 1

print(ans)
0