結果

問題 No.1183 コイン遊び
ユーザー 双六双六
提出日時 2020-08-26 05:27:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 267,260 KB
最終ジャッジ日時 2024-11-06 16:56:20
合計ジャッジ時間 12,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 47 ms
59,520 KB
testcase_09 AC 46 ms
59,904 KB
testcase_10 AC 53 ms
67,456 KB
testcase_11 AC 67 ms
84,096 KB
testcase_12 AC 263 ms
202,920 KB
testcase_13 AC 226 ms
196,056 KB
testcase_14 AC 358 ms
236,008 KB
testcase_15 AC 395 ms
266,656 KB
testcase_16 AC 355 ms
258,580 KB
testcase_17 AC 420 ms
267,252 KB
testcase_18 AC 344 ms
266,688 KB
testcase_19 AC 356 ms
267,032 KB
testcase_20 AC 370 ms
267,260 KB
testcase_21 AC 338 ms
258,580 KB
testcase_22 AC 328 ms
258,648 KB
testcase_23 AC 328 ms
258,592 KB
testcase_24 AC 326 ms
258,984 KB
testcase_25 AC 351 ms
267,224 KB
testcase_26 AC 340 ms
267,076 KB
testcase_27 AC 344 ms
266,880 KB
testcase_28 AC 348 ms
267,192 KB
testcase_29 AC 316 ms
258,896 KB
testcase_30 AC 345 ms
266,952 KB
testcase_31 AC 354 ms
267,020 KB
testcase_32 AC 347 ms
267,220 KB
testcase_33 AC 357 ms
267,260 KB
testcase_34 AC 332 ms
258,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	A = getlist()
	B = getlist()
	cnt = 0
	val = 0
	for i in range(N):
		if A[i] != B[i]:
			val = 1
		else:
			if val == 1:
				cnt += 1
			val = 0

	if val == 1:
		cnt += 1

	print(cnt)

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