結果

問題 No.1183 コイン遊び
ユーザー tyawanmusityawanmusi
提出日時 2020-08-22 16:58:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,956 KB
最終ジャッジ日時 2024-10-15 11:00:03
合計ジャッジ時間 18,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 43 ms
11,264 KB
testcase_11 AC 71 ms
12,736 KB
testcase_12 AC 475 ms
31,296 KB
testcase_13 AC 420 ms
29,108 KB
testcase_14 AC 678 ms
41,780 KB
testcase_15 AC 723 ms
43,832 KB
testcase_16 AC 742 ms
43,944 KB
testcase_17 AC 743 ms
43,908 KB
testcase_18 AC 753 ms
43,828 KB
testcase_19 AC 747 ms
43,828 KB
testcase_20 AC 742 ms
43,700 KB
testcase_21 AC 669 ms
43,956 KB
testcase_22 AC 671 ms
43,824 KB
testcase_23 AC 693 ms
43,952 KB
testcase_24 AC 687 ms
43,956 KB
testcase_25 AC 720 ms
43,828 KB
testcase_26 AC 725 ms
43,700 KB
testcase_27 AC 721 ms
43,884 KB
testcase_28 AC 748 ms
43,920 KB
testcase_29 AC 665 ms
43,700 KB
testcase_30 AC 748 ms
43,700 KB
testcase_31 AC 751 ms
43,832 KB
testcase_32 AC 748 ms
43,916 KB
testcase_33 AC 760 ms
43,824 KB
testcase_34 AC 761 ms
43,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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