結果

問題 No.1535 五七五
ユーザー lloyzlloyz
提出日時 2021-12-22 22:47:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 638 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 97,088 KB
最終ジャッジ日時 2024-09-16 18:17:00
合計ジャッジ時間 6,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 605 ms
62,292 KB
testcase_05 AC 573 ms
97,088 KB
testcase_06 AC 638 ms
96,988 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 448 ms
85,448 KB
testcase_19 AC 465 ms
85,188 KB
testcase_20 AC 464 ms
85,168 KB
testcase_21 AC 429 ms
85,564 KB
testcase_22 AC 441 ms
85,672 KB
testcase_23 AC 457 ms
85,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b, c = list(map(int, input().split()))
S = list(input().split())

Slen = [0 for _ in range(n + 1)]
for i in range(n):
    Slen[i + 1] = Slen[i] + len(S[i])

Slen = set(Slen)
ans = 0
for i in Slen:
    if (i - c in Slen) and (i - c - b in Slen) and (i - c - b - a in Slen):
        ans += 1
print(ans)
0