結果

問題 No.1535 五七五
ユーザー 👑 KazunKazun
提出日時 2021-06-06 18:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 1,361 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 199,620 KB
最終ジャッジ日時 2024-05-02 12:31:00
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,160 KB
testcase_01 AC 40 ms
52,928 KB
testcase_02 AC 40 ms
52,472 KB
testcase_03 AC 40 ms
52,456 KB
testcase_04 AC 215 ms
189,376 KB
testcase_05 AC 201 ms
181,884 KB
testcase_06 AC 195 ms
179,740 KB
testcase_07 AC 38 ms
52,208 KB
testcase_08 AC 41 ms
52,196 KB
testcase_09 AC 39 ms
52,880 KB
testcase_10 AC 40 ms
51,824 KB
testcase_11 AC 40 ms
52,776 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 40 ms
52,020 KB
testcase_14 AC 39 ms
53,108 KB
testcase_15 AC 39 ms
52,804 KB
testcase_16 AC 40 ms
53,012 KB
testcase_17 AC 40 ms
53,580 KB
testcase_18 AC 236 ms
198,956 KB
testcase_19 AC 240 ms
199,416 KB
testcase_20 AC 235 ms
199,080 KB
testcase_21 AC 234 ms
199,304 KB
testcase_22 AC 240 ms
199,620 KB
testcase_23 AC 238 ms
199,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a,b,c=map(int,input().split())
S=[len(x) for x in input().split()]

S_cum=[0]*(N+1)
for i,x in enumerate(S,1):
    S_cum[i]=S_cum[i-1]+x

T=set(S_cum)

X=0
for i in range(N):
    p=S_cum[i]
    if (p+a in T) and (p+a+b in T) and (p+a+b+c in T):
        X+=1

print(X)
0