結果

問題 No.1159 Sashiming String
ユーザー 37zigen37zigen
提出日時 2020-08-19 05:18:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,756 KB
最終ジャッジ日時 2024-10-12 03:32:11
合計ジャッジ時間 1,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 106 ms
14,592 KB
testcase_03 AC 165 ms
18,240 KB
testcase_04 AC 100 ms
14,336 KB
testcase_05 AC 142 ms
16,896 KB
testcase_06 AC 100 ms
14,208 KB
testcase_07 AC 123 ms
15,488 KB
testcase_08 AC 180 ms
18,752 KB
testcase_09 AC 178 ms
18,756 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
p=0
n=len(S)
s=[0]*n

for i in range(n):
    if S[i]=="S":
        s[i]+=1

for i in range(1,n):
    s[i]+=s[i-1]

ans=0
for i in range(n-2):
    if S[i:i+3]=="ing":
        ans+=s[i]
print(ans)
0