結果

問題 No.1183 コイン遊び
ユーザー godcitygodcity
提出日時 2020-10-25 08:18:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,084 KB
最終ジャッジ日時 2024-07-21 17:05:24
合計ジャッジ時間 16,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 37 ms
11,008 KB
testcase_11 AC 67 ms
12,236 KB
testcase_12 AC 410 ms
27,468 KB
testcase_13 AC 356 ms
25,796 KB
testcase_14 AC 569 ms
36,028 KB
testcase_15 AC 613 ms
38,016 KB
testcase_16 AC 618 ms
37,952 KB
testcase_17 AC 614 ms
38,080 KB
testcase_18 AC 630 ms
37,824 KB
testcase_19 AC 603 ms
37,824 KB
testcase_20 AC 630 ms
37,952 KB
testcase_21 AC 568 ms
37,952 KB
testcase_22 AC 552 ms
38,080 KB
testcase_23 AC 573 ms
37,828 KB
testcase_24 AC 581 ms
38,080 KB
testcase_25 AC 627 ms
37,824 KB
testcase_26 AC 646 ms
38,084 KB
testcase_27 AC 638 ms
37,956 KB
testcase_28 AC 635 ms
37,952 KB
testcase_29 AC 563 ms
37,956 KB
testcase_30 AC 623 ms
37,952 KB
testcase_31 AC 608 ms
37,956 KB
testcase_32 AC 625 ms
37,960 KB
testcase_33 AC 638 ms
37,952 KB
testcase_34 AC 623 ms
38,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

c = []
same = True
ans = 0
for i in range(n):
    if (a[i] == b[i]):
        same = True
    else:
        if (same == True):
            same = False
            ans += 1

print(ans)
0