結果

問題 No.1183 コイン遊び
ユーザー rlangevinrlangevin
提出日時 2024-11-02 19:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 270,204 KB
最終ジャッジ日時 2024-11-02 19:39:02
合計ジャッジ時間 12,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,924 KB
testcase_01 AC 36 ms
52,504 KB
testcase_02 AC 36 ms
52,620 KB
testcase_03 AC 37 ms
52,568 KB
testcase_04 AC 37 ms
53,996 KB
testcase_05 AC 36 ms
53,352 KB
testcase_06 AC 36 ms
52,208 KB
testcase_07 AC 37 ms
52,296 KB
testcase_08 AC 40 ms
59,860 KB
testcase_09 AC 41 ms
58,640 KB
testcase_10 AC 49 ms
68,148 KB
testcase_11 AC 63 ms
84,652 KB
testcase_12 AC 273 ms
202,688 KB
testcase_13 AC 220 ms
194,828 KB
testcase_14 AC 324 ms
253,580 KB
testcase_15 AC 364 ms
269,728 KB
testcase_16 AC 394 ms
269,916 KB
testcase_17 AC 349 ms
269,452 KB
testcase_18 AC 350 ms
269,400 KB
testcase_19 AC 344 ms
269,544 KB
testcase_20 AC 375 ms
269,788 KB
testcase_21 AC 338 ms
269,856 KB
testcase_22 AC 341 ms
269,280 KB
testcase_23 AC 341 ms
269,168 KB
testcase_24 AC 365 ms
269,644 KB
testcase_25 AC 348 ms
269,836 KB
testcase_26 AC 347 ms
269,580 KB
testcase_27 AC 377 ms
269,528 KB
testcase_28 AC 349 ms
269,528 KB
testcase_29 AC 333 ms
269,800 KB
testcase_30 AC 339 ms
269,676 KB
testcase_31 AC 347 ms
269,608 KB
testcase_32 AC 347 ms
269,856 KB
testcase_33 AC 350 ms
270,204 KB
testcase_34 AC 380 ms
269,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [0] + list(map(int, input().split()))
T = [0] + list(map(int, input().split()))
ans = 0
for i in range(1, N+1):
	if (S[i] != T[i]) and (S[i-1] == T[i-1]):
		ans += 1
print(ans)
0