結果

問題 No.497 入れ子の箱
ユーザー yuruhiyayuruhiya
提出日時 2020-09-06 18:50:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 605 ms / 5,000 ms
コード長 213 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-11-29 07:29:07
合計ジャッジ時間 17,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,032 KB
testcase_01 AC 95 ms
12,160 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 602 ms
12,672 KB
testcase_04 AC 603 ms
12,416 KB
testcase_05 AC 599 ms
12,544 KB
testcase_06 AC 598 ms
12,672 KB
testcase_07 AC 594 ms
12,544 KB
testcase_08 AC 597 ms
12,416 KB
testcase_09 AC 594 ms
12,416 KB
testcase_10 AC 599 ms
12,416 KB
testcase_11 AC 604 ms
12,416 KB
testcase_12 AC 565 ms
13,312 KB
testcase_13 AC 573 ms
13,312 KB
testcase_14 AC 567 ms
13,312 KB
testcase_15 AC 565 ms
13,184 KB
testcase_16 AC 561 ms
13,184 KB
testcase_17 AC 565 ms
13,312 KB
testcase_18 AC 595 ms
12,416 KB
testcase_19 AC 597 ms
12,416 KB
testcase_20 AC 599 ms
12,544 KB
testcase_21 AC 605 ms
12,544 KB
testcase_22 AC 605 ms
12,672 KB
testcase_23 AC 460 ms
12,544 KB
testcase_24 AC 457 ms
12,544 KB
testcase_25 AC 97 ms
12,160 KB
testcase_26 AC 92 ms
12,288 KB
testcase_27 AC 575 ms
13,440 KB
testcase_28 AC 581 ms
13,056 KB
testcase_29 AC 575 ms
13,056 KB
testcase_30 AC 525 ms
12,288 KB
testcase_31 AC 518 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
x = (1..n).map { gets.split.map(&:to_i).sort }.sort
dp = [0] * n
puts (0...n).map { |i|
	dp[i] = ((0...i).select { |j|
		x[i].zip(x[j]).all? { |a, b| a > b }
	}.map { |i| dp[i] }.max || 0) + 1
}.max
0