結果

問題 No.1183 コイン遊び
ユーザー ssmkzkssmkzk
提出日時 2020-10-09 00:06:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,143 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,944 KB
最終ジャッジ日時 2024-07-20 06:16:39
合計ジャッジ時間 26,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 50 ms
11,264 KB
testcase_11 AC 96 ms
12,836 KB
testcase_12 AC 688 ms
40,652 KB
testcase_13 AC 603 ms
34,752 KB
testcase_14 AC 1,000 ms
51,528 KB
testcase_15 AC 1,079 ms
55,732 KB
testcase_16 AC 1,054 ms
54,204 KB
testcase_17 AC 1,127 ms
58,824 KB
testcase_18 AC 1,061 ms
58,944 KB
testcase_19 AC 1,088 ms
58,816 KB
testcase_20 AC 1,053 ms
58,752 KB
testcase_21 AC 1,000 ms
58,820 KB
testcase_22 AC 1,017 ms
58,820 KB
testcase_23 AC 1,018 ms
58,816 KB
testcase_24 AC 1,061 ms
58,816 KB
testcase_25 AC 1,076 ms
58,944 KB
testcase_26 AC 1,143 ms
58,816 KB
testcase_27 AC 1,083 ms
58,824 KB
testcase_28 AC 1,063 ms
58,816 KB
testcase_29 AC 1,006 ms
58,820 KB
testcase_30 AC 1,117 ms
58,816 KB
testcase_31 AC 1,098 ms
58,820 KB
testcase_32 AC 1,059 ms
58,844 KB
testcase_33 AC 1,111 ms
54,264 KB
testcase_34 AC 1,072 ms
55,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lA = [0] + list(map(int, input().split()))
lB = [0] + list(map(int, input().split()))
# ans = 0
# f = 0
# for i in range(N):
#     if lA[i] == lB[i] and f == 1:
#         ans +=1
#         f = 0
#     elif lA[i] != lB[i]:
#         f = 1

# if f == 1:
#     print(ans + 1)
# else:
#     print(ans)
lC = []
lD = []
ans = 0
for i in range(len(lA) - 1):
    lC.append(lA[i] ^ lA[i + 1])
    lD.append(lB[i] ^ lB[i + 1])

for i in range(len(lC)):
    if lC[i] != lD[i]:
        ans += 1

print((ans+1) // 2)
0