結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 84 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 85 ms
12,032 KB
testcase_10 MLE -
testcase_11 AC 350 ms
29,440 KB
testcase_12 AC 973 ms
61,044 KB
testcase_13 AC 223 ms
22,016 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 756 ms
55,332 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 = t = r = 0
str.each do |char|
  e += 1 if char == 'e'
  t += 1 if char == 't'
  r += 1 if char == 'r'
end
p [e/2, t, r].min
0