結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー kokomi_ckokomi_c
提出日時 2023-10-06 17:17:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 135,772 KB
最終ジャッジ日時 2024-07-26 15:31:10
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,596 KB
testcase_02 AC 39 ms
52,556 KB
testcase_03 AC 82 ms
100,048 KB
testcase_04 AC 91 ms
107,708 KB
testcase_05 AC 59 ms
76,824 KB
testcase_06 AC 91 ms
105,180 KB
testcase_07 AC 109 ms
125,964 KB
testcase_08 AC 74 ms
91,140 KB
testcase_09 AC 50 ms
66,212 KB
testcase_10 AC 66 ms
84,024 KB
testcase_11 AC 118 ms
116,184 KB
testcase_12 AC 118 ms
135,772 KB
testcase_13 AC 72 ms
92,772 KB
testcase_14 AC 64 ms
84,216 KB
testcase_15 AC 63 ms
84,380 KB
testcase_16 AC 50 ms
69,508 KB
testcase_17 AC 61 ms
79,528 KB
testcase_18 AC 68 ms
91,944 KB
testcase_19 AC 62 ms
83,152 KB
testcase_20 AC 45 ms
62,532 KB
testcase_21 AC 51 ms
68,684 KB
testcase_22 AC 63 ms
83,412 KB
testcase_23 AC 68 ms
90,036 KB
testcase_24 AC 53 ms
71,104 KB
testcase_25 AC 55 ms
73,520 KB
testcase_26 AC 45 ms
61,608 KB
testcase_27 AC 56 ms
74,284 KB
testcase_28 AC 69 ms
91,988 KB
testcase_29 AC 57 ms
77,304 KB
testcase_30 AC 51 ms
70,084 KB
testcase_31 AC 72 ms
92,996 KB
testcase_32 AC 52 ms
69,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M1 = int(input())
Am = list(map(int, input().split()))
M2 = int(input())
Bm = list(map(int, input().split()))

ts = set([i for i in range(N+1)])

last = 0
for m in range(M1):
    t = last + Am[m]
    last = t
    if t in ts:
        ts.remove(t)

last = N
for m in range(M2):
    t = last - Bm[m]
    last = t
    if t in ts:
        ts.remove(t)

print(len(ts))
0