結果

問題 No.279 木の数え上げ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-07 19:55:45
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 137 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 84,996 KB
最終ジャッジ日時 2024-07-22 14:44:15
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 82 ms
12,032 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 81 ms
12,032 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 82 ms
12,288 KB
testcase_10 MLE -
testcase_11 AC 229 ms
26,368 KB
testcase_12 AC 633 ms
55,744 KB
testcase_13 AC 164 ms
19,584 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 476 ms
46,468 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

r = gets.chomp.chars.sort.group_by {|x| x}.map{|k,v| [k, v.size]}.to_h
puts [r.dig("t") || 0, r.dig("r") || 0, (r.dig("e") || 0) / 2].min
0