結果

問題 No.1183 コイン遊び
ユーザー takakintakakin
提出日時 2020-08-22 22:20:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,844 KB
最終ジャッジ日時 2024-10-15 12:24:32
合計ジャッジ時間 21,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 46 ms
11,136 KB
testcase_11 AC 81 ms
12,232 KB
testcase_12 AC 568 ms
28,876 KB
testcase_13 AC 490 ms
26,960 KB
testcase_14 AC 817 ms
34,484 KB
testcase_15 AC 861 ms
39,836 KB
testcase_16 AC 851 ms
36,008 KB
testcase_17 AC 864 ms
35,948 KB
testcase_18 AC 856 ms
35,952 KB
testcase_19 AC 855 ms
36,020 KB
testcase_20 AC 860 ms
35,948 KB
testcase_21 AC 804 ms
35,952 KB
testcase_22 AC 804 ms
36,804 KB
testcase_23 AC 831 ms
35,824 KB
testcase_24 AC 817 ms
35,952 KB
testcase_25 AC 889 ms
36,084 KB
testcase_26 AC 877 ms
36,788 KB
testcase_27 AC 875 ms
36,080 KB
testcase_28 AC 893 ms
36,688 KB
testcase_29 AC 826 ms
36,388 KB
testcase_30 AC 906 ms
36,020 KB
testcase_31 AC 892 ms
36,020 KB
testcase_32 AC 867 ms
36,148 KB
testcase_33 AC 851 ms
36,072 KB
testcase_34 AC 853 ms
39,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
B=[int(i) for i in input().split()]
ans=0
st=0
for i in range(n):
	if A[i]==B[i] and st==1:
		ans+=1
		st=0
	elif A[i]!=B[i] and st==0:
		st=1
if st==1:
	ans+=1
print(ans)
0