結果

問題 No.1183 コイン遊び
ユーザー Meso MesoMeso Meso
提出日時 2024-06-28 21:09:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,012 KB
最終ジャッジ日時 2024-06-28 21:10:01
合計ジャッジ時間 15,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 36 ms
11,264 KB
testcase_11 AC 69 ms
12,476 KB
testcase_12 AC 412 ms
26,556 KB
testcase_13 AC 352 ms
24,996 KB
testcase_14 AC 588 ms
34,324 KB
testcase_15 AC 608 ms
36,884 KB
testcase_16 AC 627 ms
35,988 KB
testcase_17 AC 657 ms
36,192 KB
testcase_18 AC 642 ms
36,060 KB
testcase_19 AC 600 ms
35,872 KB
testcase_20 AC 634 ms
36,060 KB
testcase_21 AC 484 ms
36,400 KB
testcase_22 AC 492 ms
36,972 KB
testcase_23 AC 709 ms
36,124 KB
testcase_24 AC 487 ms
36,060 KB
testcase_25 AC 615 ms
36,396 KB
testcase_26 AC 639 ms
36,576 KB
testcase_27 AC 645 ms
35,804 KB
testcase_28 AC 610 ms
36,124 KB
testcase_29 AC 505 ms
36,528 KB
testcase_30 AC 632 ms
36,428 KB
testcase_31 AC 624 ms
36,056 KB
testcase_32 AC 628 ms
36,128 KB
testcase_33 AC 625 ms
36,176 KB
testcase_34 AC 635 ms
37,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 0
if a[0] ^ b[0]:
    ans += 1
for i in range(1, n):
    if a[i] != b[i] and a[i-1] == b[i-1]:
        ans += 1
print(ans)
0