結果

問題 No.1159 Sashiming String
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-29 17:42:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 1,408 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 92,688 KB
最終ジャッジ日時 2024-07-16 02:54:34
合計ジャッジ時間 2,151 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,984 KB
testcase_01 AC 36 ms
54,248 KB
testcase_02 AC 53 ms
79,560 KB
testcase_03 AC 66 ms
87,992 KB
testcase_04 AC 54 ms
77,364 KB
testcase_05 AC 64 ms
88,652 KB
testcase_06 AC 53 ms
76,760 KB
testcase_07 AC 58 ms
84,504 KB
testcase_08 AC 71 ms
92,688 KB
testcase_09 AC 65 ms
90,004 KB
testcase_10 AC 38 ms
52,392 KB
testcase_11 AC 36 ms
52,028 KB
testcase_12 AC 36 ms
52,240 KB
testcase_13 AC 35 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
n = len(s)
if n < 4:
    print(0)
    exit()
C = [0]*n
for i, c in enumerate(s):
    if c == 'S':
        C[i] += 1
from itertools import accumulate
C = [0]+C
C = list(accumulate(C))
ans = 0
for i in range(n-3+1):
    if s[i] == 'i' and s[i+1] == 'n' and s[i+2] == 'g':
        ans += C[i]
print(ans)
0