結果

問題 No.497 入れ子の箱
ユーザー tsubametsubame
提出日時 2017-03-25 00:50:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 404 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-06 03:22:16
合計ジャッジ時間 9,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 364 ms
10,752 KB
testcase_04 AC 385 ms
10,880 KB
testcase_05 AC 381 ms
10,880 KB
testcase_06 AC 396 ms
11,008 KB
testcase_07 AC 376 ms
11,008 KB
testcase_08 AC 392 ms
11,008 KB
testcase_09 AC 380 ms
11,008 KB
testcase_10 AC 379 ms
10,880 KB
testcase_11 AC 371 ms
11,136 KB
testcase_12 AC 243 ms
10,880 KB
testcase_13 AC 241 ms
10,752 KB
testcase_14 AC 231 ms
10,880 KB
testcase_15 AC 248 ms
10,752 KB
testcase_16 AC 257 ms
10,752 KB
testcase_17 AC 241 ms
10,752 KB
testcase_18 AC 404 ms
10,880 KB
testcase_19 AC 363 ms
11,008 KB
testcase_20 AC 374 ms
11,008 KB
testcase_21 AC 388 ms
11,008 KB
testcase_22 AC 367 ms
11,008 KB
testcase_23 AC 92 ms
10,880 KB
testcase_24 AC 94 ms
10,880 KB
testcase_25 AC 26 ms
10,624 KB
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 300 ms
10,752 KB
testcase_28 AC 311 ms
10,752 KB
testcase_29 AC 309 ms
10,752 KB
testcase_30 AC 94 ms
10,752 KB
testcase_31 AC 99 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
box = []
for i in range(N):
    tmp = list(map(int, input().split()))
    tmp.sort()
    box.append(tmp)

box.sort(key=lambda x:x[2])

score = [1 for i in range(N)]

for i in range(N):
    for j in range(i):
        if box[i][0] > box[j][0] and box[i][1] > box[j][1] and box[i][2] > box[j][2]:
            score[i] = max(score[j] + 1, score[i])

print(max(score))
0