結果

問題 No.1183 コイン遊び
ユーザー mkawa2mkawa2
提出日時 2020-08-22 13:12:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,076 KB
最終ジャッジ日時 2024-10-15 07:23:27
合計ジャッジ時間 16,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,368 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 41 ms
11,264 KB
testcase_11 AC 66 ms
12,228 KB
testcase_12 AC 430 ms
27,588 KB
testcase_13 AC 384 ms
25,780 KB
testcase_14 AC 635 ms
36,028 KB
testcase_15 AC 655 ms
37,932 KB
testcase_16 AC 661 ms
37,812 KB
testcase_17 AC 681 ms
37,948 KB
testcase_18 AC 670 ms
37,820 KB
testcase_19 AC 659 ms
38,016 KB
testcase_20 AC 697 ms
38,072 KB
testcase_21 AC 567 ms
37,820 KB
testcase_22 AC 537 ms
37,820 KB
testcase_23 AC 747 ms
37,944 KB
testcase_24 AC 582 ms
37,820 KB
testcase_25 AC 671 ms
37,948 KB
testcase_26 AC 692 ms
37,948 KB
testcase_27 AC 674 ms
38,076 KB
testcase_28 AC 672 ms
37,948 KB
testcase_29 AC 560 ms
37,948 KB
testcase_30 AC 683 ms
37,948 KB
testcase_31 AC 683 ms
37,948 KB
testcase_32 AC 672 ms
37,944 KB
testcase_33 AC 661 ms
38,068 KB
testcase_34 AC 658 ms
37,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))

n=II()
aa=LI()+[0]
bb=LI()+[0]
ans=0
for i in range(n):
    if aa[i]!=bb[i] and aa[i+1]==bb[i+1]:ans+=1
print(ans)
0