結果
問題 | No.1045 直方体大学 |
ユーザー | tamato |
提出日時 | 2020-05-01 22:49:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,048 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,684 KB |
実行使用メモリ | 83,760 KB |
最終ジャッジ日時 | 2024-06-07 11:10:27 |
合計ジャッジ時間 | 4,609 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,728 KB |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | AC | 46 ms
60,288 KB |
testcase_03 | AC | 46 ms
60,160 KB |
testcase_04 | AC | 47 ms
60,032 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
mod = 1000000007 eps = 10**-9 def main(): import sys input = sys.stdin.readline N = int(input()) xyz = [] for _ in range(N): a, b, c = map(int, input().split()) xyz.append(sorted([a, b, c])) ans = 0 for state in range(3**N): flg = [0] * N s = state for j in range(N): flg[j] = s % 3 s //= 3 xyz_tmp = [] for i in range(N): x, y, z = xyz[i] if flg[i] == 0: xyz_tmp.append((x, y, z)) elif flg[i] == 1: xyz_tmp.append((x, z, y)) else: xyz_tmp.append((y, z, x)) xyz_tmp.sort(key=lambda p: p[1], reverse=True) ok = 1 for i in range(N-1): if xyz_tmp[i+1][0] > xyz_tmp[i][0]: ok = 0 break if ok: cnt = 0 for i in range(N): cnt += xyz_tmp[i][2] ans = max(ans, cnt) print(ans) if __name__ == '__main__': main()