結果

問題 No.1183 コイン遊び
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-01 23:48:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,100 KB
最終ジャッジ日時 2024-04-30 23:20:22
合計ジャッジ時間 17,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 39 ms
11,392 KB
testcase_11 AC 69 ms
12,500 KB
testcase_12 AC 463 ms
29,424 KB
testcase_13 AC 420 ms
27,084 KB
testcase_14 AC 706 ms
34,572 KB
testcase_15 AC 730 ms
40,100 KB
testcase_16 AC 748 ms
36,076 KB
testcase_17 AC 741 ms
36,088 KB
testcase_18 AC 732 ms
36,208 KB
testcase_19 AC 743 ms
36,276 KB
testcase_20 AC 749 ms
35,956 KB
testcase_21 AC 613 ms
36,084 KB
testcase_22 AC 606 ms
36,208 KB
testcase_23 AC 700 ms
36,208 KB
testcase_24 AC 625 ms
36,152 KB
testcase_25 AC 709 ms
36,024 KB
testcase_26 AC 750 ms
36,252 KB
testcase_27 AC 717 ms
36,208 KB
testcase_28 AC 748 ms
36,216 KB
testcase_29 AC 636 ms
36,976 KB
testcase_30 AC 684 ms
36,024 KB
testcase_31 AC 742 ms
36,208 KB
testcase_32 AC 689 ms
36,084 KB
testcase_33 AC 715 ms
36,204 KB
testcase_34 AC 734 ms
40,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [(A[i] - B[i]) % 2 for i in range(N)]

res = 0

for i in range(N-1):
    res += (C[i] == 1 and  C[i+1] == 0)

if C[-1] == 1:
    res += 1

print(res)
0