結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー mattu34mattu34
提出日時 2023-09-08 00:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 107,592 KB
最終ジャッジ日時 2024-06-25 17:50:52
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,400 KB
testcase_01 AC 43 ms
54,144 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 71 ms
83,584 KB
testcase_04 AC 74 ms
87,168 KB
testcase_05 AC 56 ms
68,736 KB
testcase_06 AC 67 ms
82,432 KB
testcase_07 AC 85 ms
103,340 KB
testcase_08 AC 61 ms
78,392 KB
testcase_09 AC 48 ms
64,000 KB
testcase_10 AC 60 ms
74,880 KB
testcase_11 AC 107 ms
106,964 KB
testcase_12 AC 98 ms
107,592 KB
testcase_13 AC 50 ms
63,112 KB
testcase_14 AC 45 ms
56,960 KB
testcase_15 AC 44 ms
56,960 KB
testcase_16 AC 48 ms
61,440 KB
testcase_17 AC 48 ms
62,336 KB
testcase_18 AC 47 ms
57,984 KB
testcase_19 AC 45 ms
56,704 KB
testcase_20 AC 46 ms
60,672 KB
testcase_21 AC 42 ms
55,296 KB
testcase_22 AC 50 ms
62,592 KB
testcase_23 AC 49 ms
63,360 KB
testcase_24 AC 48 ms
61,440 KB
testcase_25 AC 49 ms
61,696 KB
testcase_26 AC 47 ms
60,288 KB
testcase_27 AC 47 ms
56,448 KB
testcase_28 AC 47 ms
57,088 KB
testcase_29 AC 46 ms
56,448 KB
testcase_30 AC 43 ms
55,680 KB
testcase_31 AC 50 ms
63,104 KB
testcase_32 AC 48 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import heapq
import bisect
import itertools


INF = float("inf")
MOD = 998244353
mod = 998244353

N = int(input())
now = 0
dirty = [0] * (N + 1)
M = int(input())
A = list(map(int, input().split()))
for a in A:
    now += a
    dirty[now] = 1

now = N
M = int(input())
A = list(map(int, input().split()))
for a in A:
    now -= a
    dirty[now] = 1

print(dirty[1:].count(0))
0