結果

問題 No.1183 コイン遊び
ユーザー nohakai3nohakai3
提出日時 2022-07-19 15:39:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,016 KB
最終ジャッジ日時 2024-07-01 18:40:04
合計ジャッジ時間 17,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,368 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 42 ms
11,008 KB
testcase_11 AC 67 ms
12,220 KB
testcase_12 AC 409 ms
26,176 KB
testcase_13 AC 374 ms
24,368 KB
testcase_14 AC 599 ms
34,220 KB
testcase_15 AC 628 ms
35,876 KB
testcase_16 AC 623 ms
35,884 KB
testcase_17 AC 632 ms
35,892 KB
testcase_18 AC 623 ms
35,900 KB
testcase_19 AC 627 ms
35,760 KB
testcase_20 AC 632 ms
35,884 KB
testcase_21 AC 591 ms
35,888 KB
testcase_22 AC 564 ms
35,884 KB
testcase_23 AC 592 ms
35,888 KB
testcase_24 AC 591 ms
35,884 KB
testcase_25 AC 626 ms
35,760 KB
testcase_26 AC 630 ms
35,888 KB
testcase_27 AC 629 ms
36,012 KB
testcase_28 AC 652 ms
36,016 KB
testcase_29 AC 571 ms
35,760 KB
testcase_30 AC 658 ms
35,760 KB
testcase_31 AC 651 ms
35,888 KB
testcase_32 AC 644 ms
35,888 KB
testcase_33 AC 636 ms
36,012 KB
testcase_34 AC 637 ms
35,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans,on=0,0
for i in range(n):
    if A[i]==B[i]:
        if on==1:
            ans+=1
            on=0
    else:
        on=1

if on==1:
    ans+=1
print(ans)
0