結果

問題 No.1535 五七五
ユーザー H20H20
提出日時 2021-06-15 11:14:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 250,808 KB
最終ジャッジ日時 2024-06-07 20:55:55
合計ジャッジ時間 4,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,664 KB
testcase_01 AC 39 ms
54,268 KB
testcase_02 AC 38 ms
54,556 KB
testcase_03 AC 38 ms
54,248 KB
testcase_04 AC 220 ms
221,896 KB
testcase_05 AC 246 ms
232,132 KB
testcase_06 AC 233 ms
224,104 KB
testcase_07 AC 38 ms
53,812 KB
testcase_08 AC 38 ms
54,832 KB
testcase_09 AC 37 ms
54,056 KB
testcase_10 AC 38 ms
54,436 KB
testcase_11 AC 37 ms
54,760 KB
testcase_12 AC 40 ms
54,412 KB
testcase_13 AC 38 ms
54,220 KB
testcase_14 AC 39 ms
55,264 KB
testcase_15 AC 36 ms
55,352 KB
testcase_16 AC 37 ms
55,004 KB
testcase_17 AC 37 ms
53,620 KB
testcase_18 AC 314 ms
250,584 KB
testcase_19 AC 310 ms
250,740 KB
testcase_20 AC 323 ms
250,808 KB
testcase_21 AC 318 ms
250,516 KB
testcase_22 AC 316 ms
250,704 KB
testcase_23 AC 319 ms
250,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import itertools

N = int(input())
A,B,C = map(int,input().split())
SS = input().split()
L = [0]
for s in SS:
    L.append(len(s))
AC = list(itertools.accumulate(L))
d = collections.defaultdict(int)
for ac in AC:
    d[ac]=1
ans = 0
for ac in AC:
    if d[ac+A]==1 and d[ac+A+B]==1 and d[ac+A+B+C]==1:
        ans+=1
print(ans)



0