結果

問題 No.1159 Sashiming String
ユーザー 👑 rin204rin204
提出日時 2020-08-13 06:08:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,204 KB
最終ジャッジ日時 2024-10-09 18:55:23
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 72 ms
11,008 KB
testcase_03 AC 104 ms
11,136 KB
testcase_04 AC 65 ms
11,008 KB
testcase_05 AC 95 ms
11,136 KB
testcase_06 AC 65 ms
10,880 KB
testcase_07 AC 81 ms
10,880 KB
testcase_08 AC 131 ms
15,184 KB
testcase_09 AC 141 ms
16,204 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

string = input()
S_s = []
ing_s = []
for i in range(len(string)):
    if string[i] == "S":
        S_s.append(i)
    elif string[i:i+3] == "ing":
        ing_s.append(i)
l = len(ing_s)
ans = 0
for s in S_s:
    ans += l - bisect_left(ing_s, s)
print(ans)
0