結果

問題 No.1183 コイン遊び
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-01 23:48:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 819 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,844 KB
最終ジャッジ日時 2024-11-20 21:54:11
合計ジャッジ時間 19,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 45 ms
11,136 KB
testcase_11 AC 76 ms
12,244 KB
testcase_12 AC 511 ms
28,748 KB
testcase_13 AC 454 ms
28,952 KB
testcase_14 AC 741 ms
34,436 KB
testcase_15 AC 783 ms
39,844 KB
testcase_16 AC 789 ms
37,044 KB
testcase_17 AC 802 ms
36,080 KB
testcase_18 AC 804 ms
36,152 KB
testcase_19 AC 788 ms
37,048 KB
testcase_20 AC 793 ms
36,024 KB
testcase_21 AC 691 ms
36,084 KB
testcase_22 AC 693 ms
35,892 KB
testcase_23 AC 800 ms
36,152 KB
testcase_24 AC 693 ms
35,952 KB
testcase_25 AC 797 ms
36,580 KB
testcase_26 AC 776 ms
36,024 KB
testcase_27 AC 779 ms
35,824 KB
testcase_28 AC 786 ms
35,956 KB
testcase_29 AC 691 ms
36,152 KB
testcase_30 AC 796 ms
36,024 KB
testcase_31 AC 791 ms
36,028 KB
testcase_32 AC 786 ms
36,148 KB
testcase_33 AC 790 ms
36,140 KB
testcase_34 AC 819 ms
39,736 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