結果

問題 No.1183 コイン遊び
ユーザー kozykozy
提出日時 2020-08-22 14:27:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,012 KB
最終ジャッジ日時 2024-10-15 08:43:31
合計ジャッジ時間 18,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 44 ms
11,136 KB
testcase_11 AC 74 ms
12,420 KB
testcase_12 AC 468 ms
28,936 KB
testcase_13 AC 427 ms
27,128 KB
testcase_14 AC 670 ms
34,352 KB
testcase_15 AC 720 ms
40,012 KB
testcase_16 AC 729 ms
36,200 KB
testcase_17 AC 714 ms
36,076 KB
testcase_18 AC 723 ms
36,204 KB
testcase_19 AC 727 ms
36,208 KB
testcase_20 AC 726 ms
36,076 KB
testcase_21 AC 664 ms
36,072 KB
testcase_22 AC 662 ms
36,076 KB
testcase_23 AC 686 ms
36,076 KB
testcase_24 AC 689 ms
36,204 KB
testcase_25 AC 717 ms
36,208 KB
testcase_26 AC 720 ms
36,204 KB
testcase_27 AC 724 ms
36,076 KB
testcase_28 AC 724 ms
36,336 KB
testcase_29 AC 674 ms
36,076 KB
testcase_30 AC 747 ms
36,080 KB
testcase_31 AC 735 ms
36,340 KB
testcase_32 AC 724 ms
36,204 KB
testcase_33 AC 715 ms
36,076 KB
testcase_34 AC 721 ms
39,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
sys.setrecursionlimit(10 ** 7)
def input() : return sys.stdin.readline().strip()
def INT()   : return int(input())
def MAP()   : return map(int,input().split())
def LIST()  : return list(MAP())
def NIJIGEN(H): return [list(input()) for i in range(H)]
N=int(input())
L=list(map(int,input().split()))
R=list(map(int,input().split()))
ans=0
p=1
for i in range(N):
    if L[i]==R[i] and p==0:
        ans+=1
        p=1
    elif L[i]!=R[i] and p==1:
        p=0
if L[-1]==R[-1]:
    ans-=1
print(ans+1)
0