結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 44 ms
11,776 KB
testcase_11 AC 77 ms
14,968 KB
testcase_12 AC 601 ms
53,084 KB
testcase_13 AC 530 ms
48,720 KB
testcase_14 AC 908 ms
74,476 KB
testcase_15 AC 1,048 ms
79,044 KB
testcase_16 AC 1,019 ms
78,916 KB
testcase_17 AC 1,040 ms
79,180 KB
testcase_18 AC 1,025 ms
80,716 KB
testcase_19 AC 1,035 ms
80,840 KB
testcase_20 AC 1,020 ms
80,588 KB
testcase_21 AC 605 ms
35,916 KB
testcase_22 AC 598 ms
36,172 KB
testcase_23 AC 628 ms
36,040 KB
testcase_24 AC 625 ms
36,040 KB
testcase_25 AC 1,022 ms
80,756 KB
testcase_26 AC 1,040 ms
80,844 KB
testcase_27 AC 1,047 ms
80,720 KB
testcase_28 AC 1,034 ms
80,716 KB
testcase_29 AC 627 ms
36,156 KB
testcase_30 AC 1,466 ms
122,184 KB
testcase_31 AC 1,031 ms
80,764 KB
testcase_32 AC 1,033 ms
80,588 KB
testcase_33 AC 1,018 ms
79,168 KB
testcase_34 AC 1,019 ms
79,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def r(a): #圧縮された要素を保持
    ll,l=[],1
    for i in range(len(a)-1):
        if a[i]==a[i+1]:
            l+=1
        else:
            ll.append([l,a[i]])
            l=1
    ll.append([l,a[-1]])
    return ll

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=r([a[i]^b[i] for i in range(n)])
print(sum([i[1]==1 for i in c]))
0