結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー miya145592miya145592
提出日時 2023-08-04 22:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 115,780 KB
最終ジャッジ日時 2024-10-14 20:19:50
合計ジャッジ時間 3,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,372 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 62 ms
81,064 KB
testcase_04 AC 65 ms
84,980 KB
testcase_05 AC 51 ms
67,348 KB
testcase_06 AC 60 ms
80,036 KB
testcase_07 AC 80 ms
101,324 KB
testcase_08 AC 58 ms
76,128 KB
testcase_09 AC 47 ms
62,864 KB
testcase_10 AC 55 ms
73,012 KB
testcase_11 AC 96 ms
115,780 KB
testcase_12 AC 84 ms
104,852 KB
testcase_13 AC 45 ms
61,316 KB
testcase_14 AC 44 ms
60,524 KB
testcase_15 AC 44 ms
59,492 KB
testcase_16 AC 44 ms
60,864 KB
testcase_17 AC 44 ms
60,080 KB
testcase_18 AC 45 ms
59,904 KB
testcase_19 AC 43 ms
60,224 KB
testcase_20 AC 43 ms
60,276 KB
testcase_21 AC 43 ms
59,168 KB
testcase_22 AC 44 ms
60,708 KB
testcase_23 AC 44 ms
60,656 KB
testcase_24 AC 45 ms
59,428 KB
testcase_25 AC 44 ms
59,384 KB
testcase_26 AC 44 ms
59,024 KB
testcase_27 AC 42 ms
59,068 KB
testcase_28 AC 44 ms
59,932 KB
testcase_29 AC 44 ms
59,968 KB
testcase_30 AC 43 ms
58,508 KB
testcase_31 AC 46 ms
61,304 KB
testcase_32 AC 43 ms
59,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M1 = int(input())
A = list(map(int, input().split()))
M2 = int(input())
B = list(map(int, input().split()))
S = [1 for _ in range(N+1)]
now = 0
S[now] = 0
for a in A:
    now+=a
    S[now] = 0
now = N
S[now] = 0
for b in B:
    now-=b
    S[now] = 0
print(sum(S))

0