結果

問題 No.1183 コイン遊び
ユーザー 8nd5t8nd5t
提出日時 2020-10-02 19:38:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 281,476 KB
最終ジャッジ日時 2024-07-16 02:15:42
合計ジャッジ時間 14,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
89,960 KB
testcase_01 AC 149 ms
90,020 KB
testcase_02 AC 149 ms
89,592 KB
testcase_03 AC 144 ms
89,808 KB
testcase_04 AC 151 ms
89,664 KB
testcase_05 AC 148 ms
89,608 KB
testcase_06 AC 145 ms
90,128 KB
testcase_07 AC 148 ms
89,960 KB
testcase_08 AC 151 ms
89,604 KB
testcase_09 AC 146 ms
90,224 KB
testcase_10 AC 155 ms
91,400 KB
testcase_11 AC 184 ms
103,656 KB
testcase_12 AC 389 ms
216,112 KB
testcase_13 AC 331 ms
200,908 KB
testcase_14 AC 440 ms
271,392 KB
testcase_15 AC 508 ms
280,916 KB
testcase_16 AC 437 ms
281,276 KB
testcase_17 AC 425 ms
280,680 KB
testcase_18 AC 434 ms
281,248 KB
testcase_19 AC 447 ms
281,476 KB
testcase_20 AC 432 ms
281,248 KB
testcase_21 AC 411 ms
281,016 KB
testcase_22 AC 410 ms
280,704 KB
testcase_23 AC 411 ms
281,436 KB
testcase_24 AC 410 ms
280,764 KB
testcase_25 AC 439 ms
281,300 KB
testcase_26 AC 431 ms
281,228 KB
testcase_27 AC 427 ms
281,388 KB
testcase_28 AC 428 ms
281,312 KB
testcase_29 AC 403 ms
281,396 KB
testcase_30 AC 410 ms
281,248 KB
testcase_31 AC 419 ms
281,288 KB
testcase_32 AC 427 ms
281,168 KB
testcase_33 AC 444 ms
280,720 KB
testcase_34 AC 426 ms
281,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush
from bisect import bisect_left,bisect_right 
import sys,math,itertools,fractions,pprint
sys.setrecursionlimit(10**8)
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))

n = inp()
a = inpl()
b = inpl()
f = False
res = 0
for i in range(n):
    if not f and a[i] != b[i]:
        f = True
    elif f and a[i] == b[i]:
        f = False
        res += 1
if f: res += 1
print(res)
0