結果

問題 No.497 入れ子の箱
ユーザー miraxialmiraxial
提出日時 2017-03-24 23:04:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-05 23:11:23
合計ジャッジ時間 4,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 73 ms
12,288 KB
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 77 ms
12,416 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 76 ms
12,288 KB
testcase_10 AC 76 ms
12,288 KB
testcase_11 AC 77 ms
12,288 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
12,288 KB
testcase_24 AC 115 ms
12,160 KB
testcase_25 AC 73 ms
12,160 KB
testcase_26 AC 72 ms
12,160 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 132 ms
12,416 KB
testcase_31 AC 133 ms
12,160 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]
  r=[]
  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
      r<< j
    end
  end
  r.length.times do |j|
    now.delete_at(r[j]-j)
  end
  now<< g
end
c=0
now.each do |e|
  c=e[3] if c<e[3]
end
p c+1
0