結果

問題 No.1183 コイン遊び
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-25 16:28:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 110,808 KB
最終ジャッジ日時 2024-07-04 09:30:34
合計ジャッジ時間 23,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 46 ms
11,904 KB
testcase_11 AC 82 ms
14,308 KB
testcase_12 AC 582 ms
48,308 KB
testcase_13 AC 513 ms
44,228 KB
testcase_14 AC 876 ms
67,416 KB
testcase_15 AC 934 ms
71,364 KB
testcase_16 AC 923 ms
71,376 KB
testcase_17 AC 911 ms
71,432 KB
testcase_18 AC 915 ms
72,412 KB
testcase_19 AC 942 ms
72,536 KB
testcase_20 AC 942 ms
72,408 KB
testcase_21 AC 732 ms
39,900 KB
testcase_22 AC 704 ms
40,020 KB
testcase_23 AC 733 ms
39,892 KB
testcase_24 AC 718 ms
40,024 KB
testcase_25 AC 933 ms
72,280 KB
testcase_26 AC 913 ms
72,280 KB
testcase_27 AC 919 ms
72,408 KB
testcase_28 AC 927 ms
72,408 KB
testcase_29 AC 711 ms
39,764 KB
testcase_30 AC 1,091 ms
110,808 KB
testcase_31 AC 931 ms
72,280 KB
testcase_32 AC 931 ms
72,404 KB
testcase_33 AC 923 ms
71,252 KB
testcase_34 AC 937 ms
75,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def RunLengthEncoding(S):
    res = []
    N = len(S)
    i = 0
    while i < N:
        cnt = 1
        while i < N - 1 and S[i] == S[i + 1]:
            cnt += 1
            i += 1
        res.append((S[i], cnt))
        i += 1
    return res


N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

dif = [int(a != b) for a, b in zip(A, B)]
ans = 0
for k, v in RunLengthEncoding(dif):
    if k == 1:
        ans += 1
print(ans)
0