結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-07-13 19:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 117,076 KB
最終ジャッジ日時 2024-09-15 05:49:29
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,844 KB
testcase_01 AC 38 ms
52,428 KB
testcase_02 AC 39 ms
53,068 KB
testcase_03 AC 64 ms
81,360 KB
testcase_04 AC 68 ms
85,896 KB
testcase_05 AC 51 ms
67,584 KB
testcase_06 AC 64 ms
80,372 KB
testcase_07 AC 83 ms
102,148 KB
testcase_08 AC 60 ms
77,364 KB
testcase_09 AC 48 ms
62,224 KB
testcase_10 AC 57 ms
73,460 KB
testcase_11 AC 100 ms
117,076 KB
testcase_12 AC 85 ms
104,636 KB
testcase_13 AC 48 ms
60,312 KB
testcase_14 AC 45 ms
59,176 KB
testcase_15 AC 45 ms
59,312 KB
testcase_16 AC 44 ms
59,908 KB
testcase_17 AC 47 ms
61,092 KB
testcase_18 AC 46 ms
60,616 KB
testcase_19 AC 45 ms
59,808 KB
testcase_20 AC 45 ms
60,520 KB
testcase_21 AC 45 ms
59,284 KB
testcase_22 AC 46 ms
60,100 KB
testcase_23 AC 46 ms
60,336 KB
testcase_24 AC 45 ms
60,200 KB
testcase_25 AC 45 ms
60,868 KB
testcase_26 AC 44 ms
60,792 KB
testcase_27 AC 45 ms
59,448 KB
testcase_28 AC 45 ms
60,276 KB
testcase_29 AC 45 ms
58,692 KB
testcase_30 AC 43 ms
59,928 KB
testcase_31 AC 46 ms
61,128 KB
testcase_32 AC 44 ms
58,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m1=int(input())
a=list(map(int,input().split()))
m2=int(input())
b=list(map(int,input().split()))
skipped=[True for i in range(n+1)]
cur=0
for i in range(m1):
    cur+=a[i]
    skipped[cur]=False
for i in range(m2):
    cur-=b[i]
    skipped[cur]=False
print(sum(skipped))
0