結果

問題 No.1183 コイン遊び
ユーザー kit84kit84
提出日時 2020-08-22 13:08:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,304 KB
最終ジャッジ日時 2024-10-15 07:16:57
合計ジャッジ時間 15,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
enum = enumerate
inf = 1001001001

import collections
import random

def linput(ty=int, cvt=list):
	return cvt(map(ty,input().split()))

def gcd(a: int, b: int):
	while b: a, b = b, a%b
	return a

def lcm(a: int, b: int):
	return a * b // gcd(a, b)

def dist(x1,y1,x2,y2):
	return abs(x1-x2)+abs(y1-y2)

def ran():
	vRan = [random.randint(1,5) for i in range(8)]
	return vRan

def bye(res):
	sT = "No Yes".split()
	print(sT[res])
	#exit(0)

def main():
	N, = linput()
	vA = linput()
	vB = linput()
	
	vC = [1,]
	vC += [a==b for a,b in zip(vA,vB)]
	res = 0
	for p,c in zip(vC,vC[1:]):
		if (p,c)==(1,0):
			res += 1
	print(res)


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