結果

問題 No.1159 Sashiming String
ユーザー matriematrie
提出日時 2020-12-25 01:07:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 92 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 11,840 KB
実行使用メモリ 14,732 KB
最終ジャッジ日時 2023-10-21 16:04:57
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge13 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
14,272 KB
testcase_01 AC 30 ms
9,924 KB
testcase_02 AC 143 ms
10,104 KB
testcase_03 AC 242 ms
10,296 KB
testcase_04 AC 124 ms
10,132 KB
testcase_05 AC 468 ms
10,220 KB
testcase_06 AC 120 ms
10,128 KB
testcase_07 AC 225 ms
10,168 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
c=0
for i in range(s.count('S')):
	s=s[s.find('S')+1:]
	c+=s.count("ing")
print(c)
0