結果

問題 No.1183 コイン遊び
ユーザー pluto77pluto77
提出日時 2020-09-29 10:43:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,192 KB
最終ジャッジ日時 2024-07-03 15:29:02
合計ジャッジ時間 25,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 46 ms
11,424 KB
testcase_11 AC 83 ms
12,700 KB
testcase_12 AC 614 ms
31,724 KB
testcase_13 AC 589 ms
29,364 KB
testcase_14 AC 892 ms
42,124 KB
testcase_15 AC 958 ms
44,568 KB
testcase_16 AC 978 ms
44,320 KB
testcase_17 AC 997 ms
44,392 KB
testcase_18 AC 991 ms
44,320 KB
testcase_19 AC 1,013 ms
44,324 KB
testcase_20 AC 986 ms
44,584 KB
testcase_21 AC 951 ms
44,712 KB
testcase_22 AC 901 ms
44,396 KB
testcase_23 AC 929 ms
44,388 KB
testcase_24 AC 928 ms
44,392 KB
testcase_25 AC 968 ms
44,320 KB
testcase_26 AC 998 ms
44,392 KB
testcase_27 AC 989 ms
44,392 KB
testcase_28 AC 984 ms
44,388 KB
testcase_29 AC 952 ms
44,324 KB
testcase_30 AC 983 ms
45,192 KB
testcase_31 AC 1,005 ms
44,264 KB
testcase_32 AC 985 ms
44,712 KB
testcase_33 AC 991 ms
44,452 KB
testcase_34 AC 958 ms
44,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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