結果

問題 No.1183 コイン遊び
ユーザー tomatoma
提出日時 2020-08-22 15:03:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,160 KB
最終ジャッジ日時 2024-10-15 09:21:07
合計ジャッジ時間 22,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 46 ms
11,264 KB
testcase_11 AC 82 ms
12,452 KB
testcase_12 AC 562 ms
26,440 KB
testcase_13 AC 516 ms
24,636 KB
testcase_14 AC 844 ms
34,368 KB
testcase_15 AC 935 ms
36,012 KB
testcase_16 AC 902 ms
36,028 KB
testcase_17 AC 901 ms
36,160 KB
testcase_18 AC 899 ms
36,152 KB
testcase_19 AC 911 ms
36,136 KB
testcase_20 AC 894 ms
36,152 KB
testcase_21 AC 809 ms
36,024 KB
testcase_22 AC 819 ms
36,136 KB
testcase_23 AC 829 ms
36,024 KB
testcase_24 AC 846 ms
36,024 KB
testcase_25 AC 916 ms
36,024 KB
testcase_26 AC 887 ms
36,028 KB
testcase_27 AC 900 ms
36,156 KB
testcase_28 AC 906 ms
36,032 KB
testcase_29 AC 844 ms
36,028 KB
testcase_30 AC 930 ms
36,156 KB
testcase_31 AC 900 ms
36,028 KB
testcase_32 AC 906 ms
36,156 KB
testcase_33 AC 914 ms
36,152 KB
testcase_34 AC 900 ms
36,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A = [int(i) for i in input().split()]
B = [int(i) for i in input().split()]
diff = [A[i]!=B[i] for i in range(N)]

flip = 1 if diff[0] else 0
for idx in range(1,N):
  if diff[idx-1] != diff[idx] and diff[idx]:
    flip += 1
print(flip)

0