結果

問題 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
コンパイル時間 663 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-09-21 17:19:35
合計ジャッジ時間 5,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 144 ms
10,880 KB
testcase_03 AC 242 ms
11,008 KB
testcase_04 AC 124 ms
10,752 KB
testcase_05 AC 466 ms
10,880 KB
testcase_06 AC 120 ms
10,752 KB
testcase_07 AC 227 ms
10,752 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