結果

問題 No.497 入れ子の箱
ユーザー miraxialmiraxial
提出日時 2017-03-24 23:09:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-05 23:33:18
合計ジャッジ時間 6,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 193 ms
12,288 KB
testcase_04 AC 192 ms
12,288 KB
testcase_05 AC 192 ms
12,416 KB
testcase_06 AC 193 ms
12,288 KB
testcase_07 AC 196 ms
12,160 KB
testcase_08 AC 196 ms
12,288 KB
testcase_09 AC 194 ms
12,288 KB
testcase_10 AC 194 ms
12,416 KB
testcase_11 AC 194 ms
12,288 KB
testcase_12 AC 168 ms
12,288 KB
testcase_13 AC 170 ms
12,160 KB
testcase_14 AC 168 ms
12,160 KB
testcase_15 AC 168 ms
12,416 KB
testcase_16 AC 168 ms
12,288 KB
testcase_17 AC 167 ms
12,288 KB
testcase_18 AC 188 ms
12,416 KB
testcase_19 AC 186 ms
12,160 KB
testcase_20 AC 183 ms
12,288 KB
testcase_21 AC 183 ms
12,416 KB
testcase_22 AC 188 ms
12,160 KB
testcase_23 AC 137 ms
12,288 KB
testcase_24 AC 134 ms
12,288 KB
testcase_25 AC 89 ms
12,160 KB
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 170 ms
12,416 KB
testcase_28 AC 168 ms
12,288 KB
testcase_29 AC 169 ms
12,416 KB
testcase_30 AC 158 ms
12,288 KB
testcase_31 AC 158 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,*a=$<.map{|e|e.split.map(&:to_i).sort}
a.sort!{|x,y|x[0]<=>y[0]}
now=[]
n[0].times do |i|
  g=a[i]+[0]
  now.length.times do |j|
    gg=now[j]
    if gg[0]<g[0] && gg[1]<g[1] && gg[2]<g[2]
      g[3]=gg[3]+1 if g[3]<gg[3]+1
    end
  end
  now<< g
end
c=0
now.each do |e|
  c=e[3] if c<e[3]
end
p c+1
0