結果

問題 No.1159 Sashiming String
ユーザー ああいいああいい
提出日時 2022-01-27 18:11:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 60,600 KB
最終ジャッジ日時 2024-06-07 14:54:58
合計ジャッジ時間 1,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,000 KB
testcase_01 AC 40 ms
52,192 KB
testcase_02 AC 48 ms
60,404 KB
testcase_03 AC 44 ms
59,876 KB
testcase_04 AC 44 ms
60,096 KB
testcase_05 AC 45 ms
60,600 KB
testcase_06 AC 43 ms
60,124 KB
testcase_07 AC 44 ms
59,712 KB
testcase_08 AC 46 ms
60,420 KB
testcase_09 AC 50 ms
60,336 KB
testcase_10 AC 37 ms
52,056 KB
testcase_11 AC 36 ms
52,440 KB
testcase_12 AC 37 ms
51,912 KB
testcase_13 AC 37 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

counts = 0
counti = 0
for i in range(len(S)-3,-1,-1):
    if S[i:i+3] == 'ing':
        counti += 1
    if S[i] == "S":
        counts += counti
print(counts)
0