結果

問題 No.1535 五七五
ユーザー titiatitia
提出日時 2021-06-06 18:45:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,318 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,856 KB
最終ジャッジ日時 2024-05-02 13:32:07
合計ジャッジ時間 11,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 1,209 ms
37,996 KB
testcase_05 AC 1,204 ms
53,732 KB
testcase_06 AC 1,318 ms
53,856 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 1,012 ms
48,552 KB
testcase_19 AC 1,027 ms
44,464 KB
testcase_20 AC 990 ms
44,572 KB
testcase_21 AC 1,021 ms
48,428 KB
testcase_22 AC 1,015 ms
48,428 KB
testcase_23 AC 1,034 ms
48,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
import bisect

N=int(input())
a,b,c=map(int,input().split())
S=input().split()
S=[len(s) for s in S]
A=[0]+list(accumulate(S))

ANS=0

for i in range(N):
    x=A[i]

    y=bisect.bisect(A,x+a)
    z=bisect.bisect(A,x+a+b)
    w=bisect.bisect(A,x+a+b+c)



    if A[y-1]==x+a and A[z-1]==x+a+b and A[w-1]==x+a+b+c:
        ANS+=1
    
print(ANS)
0