結果

問題 No.497 入れ子の箱
ユーザー ikdikd
提出日時 2017-03-25 19:04:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-06 06:13:01
合計ジャッジ時間 5,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
12,160 KB
testcase_01 AC 72 ms
12,160 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 161 ms
12,160 KB
testcase_04 AC 153 ms
12,416 KB
testcase_05 AC 153 ms
12,288 KB
testcase_06 AC 153 ms
12,288 KB
testcase_07 AC 154 ms
12,416 KB
testcase_08 AC 154 ms
12,160 KB
testcase_09 AC 153 ms
12,160 KB
testcase_10 AC 153 ms
12,160 KB
testcase_11 AC 156 ms
12,288 KB
testcase_12 AC 143 ms
12,288 KB
testcase_13 AC 142 ms
12,416 KB
testcase_14 AC 145 ms
12,288 KB
testcase_15 AC 148 ms
12,160 KB
testcase_16 AC 145 ms
12,288 KB
testcase_17 AC 143 ms
12,160 KB
testcase_18 AC 159 ms
12,416 KB
testcase_19 AC 162 ms
12,416 KB
testcase_20 AC 159 ms
12,288 KB
testcase_21 AC 159 ms
12,160 KB
testcase_22 AC 157 ms
12,288 KB
testcase_23 AC 111 ms
12,288 KB
testcase_24 AC 110 ms
12,288 KB
testcase_25 AC 70 ms
12,288 KB
testcase_26 AC 70 ms
12,288 KB
testcase_27 AC 147 ms
12,288 KB
testcase_28 AC 147 ms
12,288 KB
testcase_29 AC 148 ms
12,288 KB
testcase_30 AC 128 ms
12,160 KB
testcase_31 AC 128 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
data=[]
n.times do
    d=gets.split.map(&:to_i).sort
    data<< d
end

data.sort!{|a, b|a[0]<=>b[0]}
memo=[]
n.times do |i|
    d=data[i]+[0]
    memo.size.times do |j|
        _d=memo[j]
        d[3]=[d[3], _d[3]+1].max if _d[0]<d[0]&&_d[1]<d[1]&&_d[2]<d[2]
    end
    memo<< d
end

a=0
memo.each do |e|
    a=[a, e[3]].max
end

puts a+1
0