結果

問題 No.497 入れ子の箱
ユーザー H3PO4H3PO4
提出日時 2020-09-02 09:02:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 707 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-21 14:03:18
合計ジャッジ時間 19,677 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 707 ms
10,880 KB
testcase_04 AC 689 ms
10,880 KB
testcase_05 AC 676 ms
10,880 KB
testcase_06 AC 681 ms
10,880 KB
testcase_07 AC 677 ms
10,880 KB
testcase_08 AC 671 ms
11,008 KB
testcase_09 AC 654 ms
10,880 KB
testcase_10 AC 698 ms
11,008 KB
testcase_11 AC 668 ms
10,880 KB
testcase_12 AC 680 ms
10,880 KB
testcase_13 AC 663 ms
11,008 KB
testcase_14 AC 678 ms
10,880 KB
testcase_15 AC 668 ms
11,008 KB
testcase_16 AC 667 ms
10,880 KB
testcase_17 AC 676 ms
11,008 KB
testcase_18 AC 687 ms
10,880 KB
testcase_19 AC 661 ms
10,880 KB
testcase_20 AC 672 ms
10,880 KB
testcase_21 AC 672 ms
10,880 KB
testcase_22 AC 659 ms
10,880 KB
testcase_23 AC 568 ms
10,752 KB
testcase_24 AC 574 ms
10,880 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 666 ms
11,008 KB
testcase_28 AC 690 ms
10,880 KB
testcase_29 AC 674 ms
11,008 KB
testcase_30 AC 655 ms
11,008 KB
testcase_31 AC 655 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Boxes = []
for _ in range(N):
    Boxes.append(sorted(list(map(int, input().split()))))
Boxes.sort()

dp = [1] * N
for i in range(N):
    for j in range(i):
        if all(Boxes[i][x] > Boxes[j][x] for x in range(3)):
            dp[i] = max(dp[i], dp[j] + 1)
print(max(dp))
0