結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 20:07:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 111,584 KB
最終ジャッジ日時 2024-09-09 20:07:58
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,552 KB
testcase_01 AC 36 ms
54,016 KB
testcase_02 AC 38 ms
52,752 KB
testcase_03 AC 60 ms
80,616 KB
testcase_04 AC 66 ms
84,604 KB
testcase_05 AC 48 ms
67,052 KB
testcase_06 AC 61 ms
81,324 KB
testcase_07 AC 77 ms
100,552 KB
testcase_08 AC 55 ms
76,764 KB
testcase_09 AC 42 ms
62,836 KB
testcase_10 AC 51 ms
72,936 KB
testcase_11 AC 94 ms
111,584 KB
testcase_12 AC 78 ms
105,652 KB
testcase_13 AC 43 ms
61,020 KB
testcase_14 AC 40 ms
59,120 KB
testcase_15 AC 40 ms
58,768 KB
testcase_16 AC 42 ms
60,284 KB
testcase_17 AC 42 ms
60,320 KB
testcase_18 AC 40 ms
58,920 KB
testcase_19 AC 41 ms
58,308 KB
testcase_20 AC 42 ms
59,696 KB
testcase_21 AC 41 ms
59,408 KB
testcase_22 AC 42 ms
60,408 KB
testcase_23 AC 42 ms
60,776 KB
testcase_24 AC 41 ms
59,284 KB
testcase_25 AC 40 ms
59,104 KB
testcase_26 AC 45 ms
60,636 KB
testcase_27 AC 41 ms
59,376 KB
testcase_28 AC 40 ms
60,204 KB
testcase_29 AC 38 ms
58,520 KB
testcase_30 AC 39 ms
58,400 KB
testcase_31 AC 42 ms
60,684 KB
testcase_32 AC 39 ms
57,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[1]*(n+1)
for _ in range(2):
	m=int(input())
	a=list(map(int,input().split()))
	p=0
	s[p]=0
	for i in range(m):
		p+=a[i]
		s[p]=0
	s.reverse()
print(sum(s))
0