結果

問題 No.1183 コイン遊び
ユーザー kit84kit84
提出日時 2020-08-22 13:08:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,008 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 32 ms
11,136 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 44 ms
11,648 KB
testcase_11 AC 66 ms
13,036 KB
testcase_12 AC 381 ms
32,868 KB
testcase_13 AC 341 ms
30,552 KB
testcase_14 AC 560 ms
43,992 KB
testcase_15 AC 595 ms
46,032 KB
testcase_16 AC 589 ms
46,036 KB
testcase_17 AC 584 ms
46,048 KB
testcase_18 AC 585 ms
46,048 KB
testcase_19 AC 587 ms
46,172 KB
testcase_20 AC 589 ms
46,300 KB
testcase_21 AC 556 ms
46,108 KB
testcase_22 AC 550 ms
46,176 KB
testcase_23 AC 550 ms
46,304 KB
testcase_24 AC 567 ms
46,180 KB
testcase_25 AC 578 ms
46,172 KB
testcase_26 AC 586 ms
46,172 KB
testcase_27 AC 610 ms
45,988 KB
testcase_28 AC 593 ms
45,980 KB
testcase_29 AC 554 ms
46,044 KB
testcase_30 AC 583 ms
46,172 KB
testcase_31 AC 583 ms
46,300 KB
testcase_32 AC 582 ms
46,048 KB
testcase_33 AC 586 ms
46,168 KB
testcase_34 AC 578 ms
46,160 KB
権限があれば一括ダウンロードができます

ソースコード

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