結果

問題 No.497 入れ子の箱
ユーザー letrangerjpletrangerjp
提出日時 2017-11-10 18:43:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-24 12:05:02
合計ジャッジ時間 16,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 615 ms
12,544 KB
testcase_04 AC 615 ms
12,544 KB
testcase_05 AC 628 ms
12,544 KB
testcase_06 AC 618 ms
12,544 KB
testcase_07 AC 613 ms
12,672 KB
testcase_08 AC 611 ms
12,672 KB
testcase_09 AC 615 ms
12,672 KB
testcase_10 AC 621 ms
12,416 KB
testcase_11 AC 613 ms
12,544 KB
testcase_12 AC 525 ms
12,672 KB
testcase_13 AC 547 ms
12,672 KB
testcase_14 AC 525 ms
12,416 KB
testcase_15 WA -
testcase_16 AC 507 ms
12,672 KB
testcase_17 AC 527 ms
12,672 KB
testcase_18 AC 611 ms
12,672 KB
testcase_19 AC 609 ms
12,544 KB
testcase_20 AC 609 ms
12,672 KB
testcase_21 AC 614 ms
12,544 KB
testcase_22 AC 615 ms
12,544 KB
testcase_23 AC 90 ms
12,416 KB
testcase_24 AC 92 ms
12,544 KB
testcase_25 AC 85 ms
12,160 KB
testcase_26 AC 83 ms
12,160 KB
testcase_27 AC 573 ms
12,672 KB
testcase_28 AC 563 ms
12,544 KB
testcase_29 AC 578 ms
12,672 KB
testcase_30 AC 91 ms
12,416 KB
testcase_31 AC 526 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = $<.map{|s|s.split.map &:to_i}
A.map!{|a|a.sort}.sort!

$dp = {}
def f(i)
  $dp[i] ||= if i < 0
    0
  else
    (0...i).map{|j|
      1 + f(j) if A[j].zip(A[i]).all?{|a,b|a < b}
    }.compact.max || 1
  end
end

p f(N-1)
0