結果

問題 No.497 入れ子の箱
ユーザー 6soukiti296soukiti29
提出日時 2017-03-26 06:44:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-06 05:07:32
合計ジャッジ時間 3,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 78 ms
11,136 KB
testcase_04 AC 80 ms
11,136 KB
testcase_05 AC 77 ms
11,136 KB
testcase_06 AC 76 ms
11,136 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 109 ms
10,880 KB
testcase_24 AC 107 ms
11,136 KB
testcase_25 AC 26 ms
10,752 KB
testcase_26 AC 24 ms
10,752 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 133 ms
11,136 KB
testcase_31 AC 129 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
for n in range(N):
	X,Y,Z = map(int,input().split())
	V = X*Y*Z
	A.append([X,Y,Z,V])
A.sort(key = lambda x: - x[3])
B = [[float("inf") for i in range(3)] + [0]]
for a in A:
	for b in B:
		if b[0] > a[0] and b[1] > a[1] and b[2] > a[2]:
			B.append(a[:-1] + [b[3] + 1])
			B.sort(key = lambda x: - x[3])
			break
print(B[0][3])
0