結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー FromBooskaFromBooska
提出日時 2023-08-05 10:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 117,132 KB
最終ジャッジ日時 2024-10-15 07:55:44
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,660 KB
testcase_01 AC 38 ms
52,276 KB
testcase_02 AC 37 ms
53,276 KB
testcase_03 AC 59 ms
82,284 KB
testcase_04 AC 64 ms
86,044 KB
testcase_05 AC 46 ms
67,440 KB
testcase_06 AC 56 ms
80,600 KB
testcase_07 AC 74 ms
100,804 KB
testcase_08 AC 55 ms
76,300 KB
testcase_09 AC 42 ms
62,588 KB
testcase_10 AC 53 ms
72,884 KB
testcase_11 AC 93 ms
117,132 KB
testcase_12 AC 78 ms
104,628 KB
testcase_13 AC 42 ms
60,028 KB
testcase_14 AC 39 ms
60,168 KB
testcase_15 AC 38 ms
59,012 KB
testcase_16 AC 39 ms
59,776 KB
testcase_17 AC 40 ms
61,196 KB
testcase_18 AC 38 ms
60,056 KB
testcase_19 AC 39 ms
58,588 KB
testcase_20 AC 40 ms
59,832 KB
testcase_21 AC 37 ms
58,572 KB
testcase_22 AC 41 ms
59,636 KB
testcase_23 AC 43 ms
60,796 KB
testcase_24 AC 41 ms
59,844 KB
testcase_25 AC 39 ms
59,792 KB
testcase_26 AC 41 ms
59,104 KB
testcase_27 AC 38 ms
58,316 KB
testcase_28 AC 38 ms
58,880 KB
testcase_29 AC 39 ms
59,012 KB
testcase_30 AC 39 ms
58,276 KB
testcase_31 AC 42 ms
59,888 KB
testcase_32 AC 39 ms
58,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M1 = int(input())
A = list(map(int, input().split()))
M2 = int(input())
B = list(map(int, input().split()))
stairs = [1]*(N+1)
stairs[0] = 0
stairs[N] = 0
current = 0
for i in range(M1):
    current += A[i]
    stairs[current] = 0
current = N
for i in range(M2):
    current -= B[i]
    stairs[current] = 0
    
#print(stairs)

ans = sum(stairs)
print(ans)
0