結果

問題 No.1183 コイン遊び
ユーザー hir355hir355
提出日時 2020-08-22 13:17:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,756 KB
最終ジャッジ日時 2024-10-15 07:30:31
合計ジャッジ時間 21,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 48 ms
11,136 KB
testcase_11 AC 81 ms
12,360 KB
testcase_12 AC 549 ms
26,312 KB
testcase_13 AC 503 ms
24,632 KB
testcase_14 AC 825 ms
34,392 KB
testcase_15 AC 875 ms
36,224 KB
testcase_16 AC 867 ms
36,028 KB
testcase_17 AC 878 ms
36,132 KB
testcase_18 AC 873 ms
36,028 KB
testcase_19 AC 869 ms
35,940 KB
testcase_20 AC 877 ms
35,940 KB
testcase_21 AC 795 ms
36,008 KB
testcase_22 AC 801 ms
35,880 KB
testcase_23 AC 833 ms
35,944 KB
testcase_24 AC 843 ms
36,500 KB
testcase_25 AC 865 ms
36,136 KB
testcase_26 AC 905 ms
36,460 KB
testcase_27 AC 869 ms
35,812 KB
testcase_28 AC 886 ms
35,808 KB
testcase_29 AC 801 ms
36,136 KB
testcase_30 AC 910 ms
36,192 KB
testcase_31 AC 872 ms
36,756 KB
testcase_32 AC 874 ms
35,876 KB
testcase_33 AC 867 ms
35,868 KB
testcase_34 AC 877 ms
36,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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