結果

問題 No.497 入れ子の箱
ユーザー kohei2019kohei2019
提出日時 2022-02-03 23:35:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-06-11 10:00:54
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 126 ms
76,728 KB
testcase_04 AC 130 ms
76,544 KB
testcase_05 AC 125 ms
76,800 KB
testcase_06 AC 125 ms
76,672 KB
testcase_07 AC 126 ms
76,928 KB
testcase_08 AC 126 ms
76,704 KB
testcase_09 AC 127 ms
76,928 KB
testcase_10 AC 130 ms
76,800 KB
testcase_11 AC 129 ms
76,544 KB
testcase_12 AC 120 ms
76,928 KB
testcase_13 AC 123 ms
76,800 KB
testcase_14 AC 116 ms
76,848 KB
testcase_15 AC 120 ms
76,724 KB
testcase_16 AC 119 ms
76,704 KB
testcase_17 AC 114 ms
76,800 KB
testcase_18 AC 138 ms
76,968 KB
testcase_19 AC 144 ms
76,800 KB
testcase_20 AC 138 ms
76,856 KB
testcase_21 AC 137 ms
76,672 KB
testcase_22 AC 140 ms
76,672 KB
testcase_23 AC 70 ms
67,328 KB
testcase_24 AC 68 ms
67,712 KB
testcase_25 AC 45 ms
53,632 KB
testcase_26 AC 45 ms
53,632 KB
testcase_27 AC 128 ms
76,872 KB
testcase_28 AC 127 ms
76,800 KB
testcase_29 AC 130 ms
76,544 KB
testcase_30 AC 83 ms
70,144 KB
testcase_31 AC 89 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
lsXYZ = [list(sorted(list(map(int,input().split())))) for i in range(N)]
lsXYZ.sort(reverse=True)
d = collections.defaultdict(lambda:0)

for i in range(N):
    x,y,z = lsXYZ[i]
    k = 1
    for key in d.keys():
        x1,y1,z1 = key
        if x1 > x and y1 > y and z1 >z:
            k = max(k,d[key]+1)
    d[(x,y,z)] = k

print(max(d.values()))
0