結果

問題 No.1159 Sashiming String
ユーザー lllllll88938494lllllll88938494
提出日時 2023-07-08 14:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 63,548 KB
最終ジャッジ日時 2024-07-22 09:46:53
合計ジャッジ時間 1,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,628 KB
testcase_01 AC 40 ms
52,124 KB
testcase_02 AC 47 ms
62,348 KB
testcase_03 AC 48 ms
63,396 KB
testcase_04 AC 48 ms
61,816 KB
testcase_05 AC 49 ms
63,016 KB
testcase_06 AC 46 ms
61,480 KB
testcase_07 AC 48 ms
61,656 KB
testcase_08 AC 50 ms
63,548 KB
testcase_09 AC 51 ms
63,068 KB
testcase_10 AC 36 ms
52,948 KB
testcase_11 AC 37 ms
53,912 KB
testcase_12 AC 36 ms
52,496 KB
testcase_13 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
f = [0]*len(s)
for i in range(len(s)-2):
    if s[i] == 'i' and s[i+1] == 'n' and s[i+2] == 'g':
        f[i] = 1

for i in range(len(s)-1):
    f[i+1] += f[i]

ans = 0
for i in range(len(s)):
    if s[i] == 'S':
        ans += f[-1]-f[i]

print(ans)
0