結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー H20
提出日時 2023-08-04 22:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 129,664 KB
最終ジャッジ日時 2024-10-14 20:02:54
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
A = list(map(int, input().split()))
M = int(input())
B = list(map(int, input().split()))
S = set()
step = 0
for a in A:
    step+=a
    S.add(step)
for b in B:
    step-=b
    S.add(step)
print(N-len(S)+1)
0