結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー nikoro256nikoro256
提出日時 2023-08-04 21:44:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 118,076 KB
最終ジャッジ日時 2024-10-14 19:41:56
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
M1=int(input())
A=list(map(int,input().split()))
M2=int(input())
B=list(map(int,input().split()))
dic=defaultdict(int)
count=0
for i in range(M1):
    count+=A[i]
    dic[count]+=1
count=N
for i in range(M2):
    count-=B[i]
    dic[count]+=1
print(N+1-len(dic))
0