結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 87 ms
98,304 KB
testcase_04 AC 96 ms
101,760 KB
testcase_05 AC 62 ms
74,624 KB
testcase_06 AC 84 ms
96,384 KB
testcase_07 AC 113 ms
103,424 KB
testcase_08 AC 78 ms
90,624 KB
testcase_09 AC 56 ms
66,304 KB
testcase_10 AC 72 ms
84,480 KB
testcase_11 AC 130 ms
118,076 KB
testcase_12 AC 118 ms
106,240 KB
testcase_13 AC 46 ms
60,032 KB
testcase_14 AC 42 ms
53,760 KB
testcase_15 AC 42 ms
53,760 KB
testcase_16 AC 47 ms
60,288 KB
testcase_17 AC 47 ms
59,776 KB
testcase_18 AC 44 ms
54,016 KB
testcase_19 AC 42 ms
53,888 KB
testcase_20 AC 47 ms
59,904 KB
testcase_21 AC 43 ms
54,016 KB
testcase_22 AC 47 ms
60,160 KB
testcase_23 AC 47 ms
59,520 KB
testcase_24 AC 46 ms
59,904 KB
testcase_25 AC 45 ms
59,520 KB
testcase_26 AC 45 ms
60,160 KB
testcase_27 AC 42 ms
53,888 KB
testcase_28 AC 41 ms
53,760 KB
testcase_29 AC 45 ms
54,016 KB
testcase_30 AC 44 ms
53,760 KB
testcase_31 AC 47 ms
59,904 KB
testcase_32 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

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