結果

問題 No.1159 Sashiming String
ユーザー yansi819yansi819
提出日時 2024-05-08 12:56:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 78,708 KB
最終ジャッジ日時 2024-12-14 17:04:17
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,628 KB
testcase_01 WA -
testcase_02 AC 56 ms
65,916 KB
testcase_03 AC 52 ms
60,528 KB
testcase_04 AC 60 ms
65,968 KB
testcase_05 AC 58 ms
69,052 KB
testcase_06 AC 57 ms
65,364 KB
testcase_07 AC 57 ms
67,776 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
52,756 KB
testcase_11 AC 39 ms
52,752 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

S = input()

T = []
for i in range(len(S)):
    if S[i] == 'i':
        if i < len(S) - 3:
            if S[i + 1] == 'n' and S[i + 2] == 'g':
                T.append(i)
                i += 2
ans = 0
for i in range(len(S)):
    if S[i] == 'S':
        ans += len(T) - bisect_left(T, i)

print(ans)
0