結果

問題 No.497 入れ子の箱
ユーザー convexineqconvexineq
提出日時 2021-02-17 11:39:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 317 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 70,920 KB
最終ジャッジ日時 2024-09-13 22:51:06
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,624 KB
testcase_01 AC 38 ms
51,808 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 69 ms
66,344 KB
testcase_04 AC 68 ms
67,060 KB
testcase_05 AC 68 ms
68,040 KB
testcase_06 AC 68 ms
68,348 KB
testcase_07 AC 69 ms
66,852 KB
testcase_08 AC 68 ms
68,172 KB
testcase_09 AC 68 ms
66,788 KB
testcase_10 AC 68 ms
68,516 KB
testcase_11 AC 69 ms
67,092 KB
testcase_12 AC 83 ms
69,520 KB
testcase_13 AC 81 ms
69,776 KB
testcase_14 AC 81 ms
70,716 KB
testcase_15 AC 78 ms
70,184 KB
testcase_16 AC 79 ms
70,056 KB
testcase_17 AC 82 ms
70,620 KB
testcase_18 AC 78 ms
70,576 KB
testcase_19 AC 79 ms
70,384 KB
testcase_20 AC 77 ms
70,648 KB
testcase_21 AC 77 ms
70,920 KB
testcase_22 AC 76 ms
70,180 KB
testcase_23 AC 62 ms
66,604 KB
testcase_24 AC 64 ms
66,684 KB
testcase_25 AC 39 ms
53,140 KB
testcase_26 AC 38 ms
52,992 KB
testcase_27 AC 81 ms
69,340 KB
testcase_28 AC 83 ms
70,064 KB
testcase_29 AC 78 ms
69,320 KB
testcase_30 AC 66 ms
67,108 KB
testcase_31 AC 70 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xyz = [sorted(map(int,input().split()),reverse=1) for _ in range(n)]
xyz.sort(key=lambda x:x[-1])
dp = [0]*n
for i in range(n):
    c = 0
    xi,yi,zi = xyz[i]
    for j in range(i):
        xj,yj,zj = xyz[j]
        if xi > xj and yi > yj and zi > zj: c = max(c,dp[j])
    dp[i] = c+1
print(max(dp))
0