結果

問題 No.497 入れ子の箱
ユーザー lloyzlloyz
提出日時 2022-11-24 00:13:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 71,392 KB
最終ジャッジ日時 2024-09-25 03:32:05
合計ジャッジ時間 3,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,152 KB
testcase_01 AC 36 ms
52,760 KB
testcase_02 AC 37 ms
52,492 KB
testcase_03 AC 70 ms
67,444 KB
testcase_04 AC 67 ms
67,664 KB
testcase_05 AC 67 ms
68,128 KB
testcase_06 AC 67 ms
68,524 KB
testcase_07 AC 67 ms
67,752 KB
testcase_08 AC 69 ms
67,916 KB
testcase_09 AC 68 ms
67,792 KB
testcase_10 AC 68 ms
68,132 KB
testcase_11 AC 67 ms
67,120 KB
testcase_12 AC 79 ms
69,260 KB
testcase_13 AC 78 ms
69,952 KB
testcase_14 AC 79 ms
69,376 KB
testcase_15 AC 78 ms
70,000 KB
testcase_16 AC 78 ms
71,392 KB
testcase_17 AC 77 ms
69,220 KB
testcase_18 AC 71 ms
70,500 KB
testcase_19 AC 72 ms
69,516 KB
testcase_20 AC 72 ms
70,780 KB
testcase_21 AC 71 ms
70,868 KB
testcase_22 AC 71 ms
70,520 KB
testcase_23 AC 61 ms
66,616 KB
testcase_24 AC 61 ms
65,844 KB
testcase_25 AC 36 ms
52,332 KB
testcase_26 AC 37 ms
52,380 KB
testcase_27 AC 75 ms
69,204 KB
testcase_28 AC 79 ms
69,512 KB
testcase_29 AC 76 ms
69,612 KB
testcase_30 AC 69 ms
67,700 KB
testcase_31 AC 73 ms
70,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
H = []
for _ in range(n):
    L = list(map(int, input().split()))
    L.sort()
    H.append(L)
H.sort(key=lambda x: (x[0], x[1], x[2]))
DP = [0 for _ in range(n)]
DP[n - 1] = 1
for i in range(n - 2, -1, -1):
    res = 1
    xi, yi, zi = H[i]
    for j in range(i + 1, n):
        xj, yj, zj = H[j]
        if xi < xj and yi < yj and zi < zj:
            res = max(res, DP[j] + 1)
    DP[i] = res
print(max(DP))
0