結果

問題 No.279 木の数え上げ
ユーザー MaxMellonMaxMellon
提出日時 2015-09-25 00:52:13
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 253 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 97,600 KB
最終ジャッジ日時 2024-07-19 09:06:25
合計ジャッジ時間 15,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 79 ms
12,032 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 81 ms
12,288 KB
testcase_05 AC 86 ms
12,032 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 AC 78 ms
12,032 KB
testcase_08 AC 83 ms
12,032 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 MLE -
testcase_11 AC 351 ms
29,568 KB
testcase_12 AC 1,045 ms
61,276 KB
testcase_13 AC 223 ms
21,760 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 770 ms
55,260 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

str = gets.chomp.split('')
ans = []
str.each { |e| ans.push e if e == 't' || e == 'r' || e == 'e' }.sort!
e = str.select { |item| item == 'e' }.size
t = str.select { |item| item == 't' }.size
r = str.select { |item| item == 'r' }.size
p [e/2, t, r].min
0