結果

問題 No.279 木の数え上げ
ユーザー maimai
提出日時 2016-01-30 20:30:57
言語 Ruby
(3.3.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 114 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 72,704 KB
最終ジャッジ日時 2024-04-22 16:15:44
合計ジャッジ時間 5,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 81 ms
11,904 KB
testcase_02 AC 78 ms
12,032 KB
testcase_03 AC 75 ms
12,032 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 78 ms
12,032 KB
testcase_07 AC 76 ms
11,904 KB
testcase_08 AC 79 ms
12,032 KB
testcase_09 AC 76 ms
11,904 KB
testcase_10 MLE -
testcase_11 AC 162 ms
23,936 KB
testcase_12 AC 346 ms
49,792 KB
testcase_13 AC 124 ms
18,304 KB
testcase_14 MLE -
testcase_15 AC 407 ms
60,928 KB
testcase_16 AC 385 ms
56,832 KB
testcase_17 MLE -
testcase_18 AC 283 ms
41,088 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

alpha=Array.new(26,0)
gets.chars.map{|e|e.to_i(36)-10}.each{|e|alpha[e]+=1}
p [alpha[19],alpha[17],alpha[4]/2].min
0