結果

問題 No.279 木の数え上げ
ユーザー mesh1nek0x0mesh1nek0x0
提出日時 2018-07-05 20:47:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-01 02:41:02
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 87 ms
12,416 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 89 ms
12,416 KB
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 171 ms
17,024 KB
testcase_11 AC 105 ms
13,312 KB
testcase_12 AC 140 ms
15,596 KB
testcase_13 AC 98 ms
13,312 KB
testcase_14 AC 173 ms
17,408 KB
testcase_15 AC 160 ms
17,152 KB
testcase_16 AC 153 ms
15,420 KB
testcase_17 AC 170 ms
17,280 KB
testcase_18 AC 126 ms
15,616 KB
testcase_19 AC 169 ms
17,280 KB
testcase_20 AC 174 ms
17,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/bin/ruby
S = gets.chomp
t = S.scan(/t/).count
r = S.scan(/r/).count
e = S.scan(/e/).count

puts [t, r, e / 2].min 
0