結果

問題 No.1183 コイン遊び
ユーザー anagohirameanagohirame
提出日時 2020-08-22 13:27:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 276,200 KB
最終ジャッジ日時 2024-10-15 07:43:00
合計ジャッジ時間 9,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,972 KB
testcase_01 AC 36 ms
51,872 KB
testcase_02 AC 36 ms
51,864 KB
testcase_03 AC 34 ms
51,824 KB
testcase_04 AC 35 ms
51,980 KB
testcase_05 AC 36 ms
53,040 KB
testcase_06 AC 37 ms
51,904 KB
testcase_07 AC 37 ms
52,756 KB
testcase_08 AC 39 ms
58,788 KB
testcase_09 AC 38 ms
58,288 KB
testcase_10 AC 46 ms
67,496 KB
testcase_11 AC 63 ms
84,748 KB
testcase_12 AC 233 ms
197,752 KB
testcase_13 AC 212 ms
189,852 KB
testcase_14 AC 313 ms
245,028 KB
testcase_15 AC 346 ms
275,748 KB
testcase_16 AC 338 ms
276,200 KB
testcase_17 AC 344 ms
275,812 KB
testcase_18 AC 340 ms
275,680 KB
testcase_19 AC 340 ms
275,496 KB
testcase_20 AC 345 ms
276,012 KB
testcase_21 AC 317 ms
275,500 KB
testcase_22 AC 318 ms
275,540 KB
testcase_23 AC 319 ms
275,720 KB
testcase_24 AC 321 ms
275,644 KB
testcase_25 AC 332 ms
275,652 KB
testcase_26 AC 341 ms
275,780 KB
testcase_27 AC 336 ms
275,636 KB
testcase_28 AC 334 ms
275,348 KB
testcase_29 AC 324 ms
275,664 KB
testcase_30 AC 323 ms
275,860 KB
testcase_31 AC 332 ms
275,692 KB
testcase_32 AC 359 ms
275,444 KB
testcase_33 AC 345 ms
275,592 KB
testcase_34 AC 339 ms
275,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans = 0
tmp = 0
for a, b in zip(A, B):
	if a != b:
		tmp += 1
	else:
		if tmp > 0:
			ans += 1
			tmp = 0
if tmp > 0:
	ans += 1
print(ans)
0