結果

問題 No.279 木の数え上げ
ユーザー simansiman
提出日時 2021-03-27 17:15:00
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 116 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-05-06 22:01:13
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 78 ms
12,416 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 83 ms
12,416 KB
testcase_08 AC 81 ms
12,416 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 354 ms
62,464 KB
testcase_11 AC 149 ms
22,656 KB
testcase_12 AC 271 ms
45,952 KB
testcase_13 AC 116 ms
17,792 KB
testcase_14 MLE -
testcase_15 AC 312 ms
55,424 KB
testcase_16 AC 291 ms
51,712 KB
testcase_17 AC 356 ms
62,720 KB
testcase_18 AC 222 ms
38,016 KB
testcase_19 AC 355 ms
61,568 KB
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp
counter = S.chars.tally
counter.default = 0

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