結果

問題 No.497 入れ子の箱
ユーザー Takashi MakinoTakashi Makino
提出日時 2017-04-15 14:23:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 359 ms / 5,000 ms
コード長 754 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-18 17:55:09
合計ジャッジ時間 9,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 11 ms
6,400 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 359 ms
6,272 KB
testcase_04 AC 340 ms
6,400 KB
testcase_05 AC 340 ms
6,400 KB
testcase_06 AC 340 ms
6,400 KB
testcase_07 AC 340 ms
6,400 KB
testcase_08 AC 339 ms
6,400 KB
testcase_09 AC 341 ms
6,400 KB
testcase_10 AC 342 ms
6,400 KB
testcase_11 AC 341 ms
6,272 KB
testcase_12 AC 286 ms
6,400 KB
testcase_13 AC 282 ms
6,400 KB
testcase_14 AC 281 ms
6,400 KB
testcase_15 AC 285 ms
6,400 KB
testcase_16 AC 285 ms
6,528 KB
testcase_17 AC 285 ms
6,272 KB
testcase_18 AC 339 ms
6,528 KB
testcase_19 AC 342 ms
6,400 KB
testcase_20 AC 343 ms
6,400 KB
testcase_21 AC 341 ms
6,528 KB
testcase_22 AC 340 ms
6,528 KB
testcase_23 AC 188 ms
6,656 KB
testcase_24 AC 189 ms
6,528 KB
testcase_25 AC 11 ms
6,400 KB
testcase_26 AC 11 ms
6,400 KB
testcase_27 AC 307 ms
6,528 KB
testcase_28 AC 304 ms
6,528 KB
testcase_29 AC 303 ms
6,528 KB
testcase_30 AC 226 ms
6,528 KB
testcase_31 AC 226 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

def readData():
    n = input()
    box_list = []
    while len(box_list) != n:
        box = map(int, raw_input().split())
        box.sort()
        box_list.append(box)
    box_list.sort()
    return n, box_list

# box2のほうが大きければTrueを返す
def compare_box(box1, box2):
    for t in xrange(3):
        if box2[t] <= box1[t]:
            return False
    return True

def matryoshka(n, box_list):
    dp = [1] * n
    for i in xrange(n-2, -1, -1):
        for j in xrange(i+1, n):
            if compare_box(box_list[i], box_list[j]):
                dp[i] = max(dp[i], dp[j]+1)
    print max(dp)
    
if __name__ == "__main__":
    n, box_list = readData()
    matryoshka(n, box_list)
0