結果

問題 No.279 木の数え上げ
ユーザー tamura2004tamura2004
提出日時 2020-05-10 14:13:11
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 83 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-07-07 15:23:47
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 74 ms
12,288 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 78 ms
12,032 KB
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 76 ms
12,160 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 MLE -
testcase_11 AC 146 ms
24,064 KB
testcase_12 AC 307 ms
50,432 KB
testcase_13 AC 121 ms
18,688 KB
testcase_14 MLE -
testcase_15 AC 359 ms
61,696 KB
testcase_16 AC 335 ms
57,472 KB
testcase_17 MLE -
testcase_18 AC 251 ms
41,728 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp.chars.map(&:to_sym).tally
ans = [s[:t], s[:r], s[:e]/2].min
puts ans
0