結果

問題 No.1159 Sashiming String
ユーザー simansiman
提出日時 2021-01-15 19:40:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-05-04 21:03:15
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,032 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 164 ms
12,288 KB
testcase_03 AC 235 ms
12,544 KB
testcase_04 AC 159 ms
12,544 KB
testcase_05 AC 201 ms
12,416 KB
testcase_06 AC 157 ms
12,416 KB
testcase_07 AC 185 ms
12,416 KB
testcase_08 AC 215 ms
12,416 KB
testcase_09 AC 192 ms
12,672 KB
testcase_10 AC 93 ms
12,160 KB
testcase_11 AC 89 ms
12,032 KB
testcase_12 AC 92 ms
12,032 KB
testcase_13 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp

s_cnt = 0
ing_cnt = 0
ans = 0

S.each_char.with_index do |s, idx|
  if s == 'S'
    s_cnt += 1
  elsif idx >= 2 && S[idx - 2..idx] == 'ing'
    ing_cnt += 1
    ans += s_cnt
  end
end

puts ans
0