結果

問題 No.497 入れ子の箱
ユーザー roarisroaris
提出日時 2020-12-05 16:14:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 68,540 KB
最終ジャッジ日時 2024-09-15 17:57:05
合計ジャッジ時間 3,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 63 ms
63,616 KB
testcase_04 AC 58 ms
63,488 KB
testcase_05 AC 57 ms
63,388 KB
testcase_06 AC 58 ms
63,232 KB
testcase_07 AC 58 ms
63,744 KB
testcase_08 AC 58 ms
63,232 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 57 ms
63,488 KB
testcase_11 AC 58 ms
63,232 KB
testcase_12 AC 78 ms
68,224 KB
testcase_13 AC 75 ms
67,200 KB
testcase_14 AC 78 ms
68,224 KB
testcase_15 AC 75 ms
67,328 KB
testcase_16 AC 74 ms
67,584 KB
testcase_17 AC 78 ms
68,096 KB
testcase_18 AC 69 ms
68,224 KB
testcase_19 AC 68 ms
67,712 KB
testcase_20 AC 69 ms
68,540 KB
testcase_21 AC 68 ms
67,584 KB
testcase_22 AC 70 ms
68,096 KB
testcase_23 AC 51 ms
62,208 KB
testcase_24 AC 52 ms
62,592 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 73 ms
67,712 KB
testcase_28 AC 71 ms
67,072 KB
testcase_29 AC 70 ms
67,456 KB
testcase_30 AC 59 ms
64,384 KB
testcase_31 AC 64 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def ok(a, b):
    return a[0]<b[0] and a[1]<b[1] and a[2]<b[2]

N = int(input())
XYZ = [list(map(int, input().split())) for _ in range(N)]

for i in range(N):
    XYZ[i].sort()

XYZ.sort()
dp = [1]*N

for i in range(N):
    for j in range(i):
        if ok(XYZ[j], XYZ[i]):
            dp[i] = max(dp[i], dp[j]+1)

print(max(dp))
0