結果

問題 No.1183 コイン遊び
ユーザー titiatitia
提出日時 2020-08-22 13:26:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,304 KB
最終ジャッジ日時 2024-10-15 07:42:15
合計ジャッジ時間 18,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 43 ms
11,136 KB
testcase_11 AC 71 ms
12,360 KB
testcase_12 AC 469 ms
27,968 KB
testcase_13 AC 414 ms
25,788 KB
testcase_14 AC 674 ms
36,392 KB
testcase_15 AC 718 ms
39,304 KB
testcase_16 AC 729 ms
37,944 KB
testcase_17 AC 718 ms
38,024 KB
testcase_18 AC 725 ms
37,956 KB
testcase_19 AC 727 ms
37,892 KB
testcase_20 AC 730 ms
37,960 KB
testcase_21 AC 722 ms
38,232 KB
testcase_22 AC 721 ms
38,016 KB
testcase_23 AC 648 ms
37,832 KB
testcase_24 AC 734 ms
37,960 KB
testcase_25 AC 715 ms
37,896 KB
testcase_26 AC 712 ms
38,088 KB
testcase_27 AC 732 ms
38,020 KB
testcase_28 AC 724 ms
38,020 KB
testcase_29 AC 742 ms
38,088 KB
testcase_30 AC 760 ms
38,020 KB
testcase_31 AC 725 ms
37,832 KB
testcase_32 AC 719 ms
38,088 KB
testcase_33 AC 725 ms
38,016 KB
testcase_34 AC 715 ms
37,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

ANS=0
if A[0]!=B[0]:
    ANS+=1
for i in range(1,N):
    if A[i-1]==B[i-1] and A[i]!=B[i]:
        ANS+=1
print(ANS)
0