結果

問題 No.1045 直方体大学
ユーザー tamatotamato
提出日時 2020-05-01 22:33:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 875 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 83,048 KB
最終ジャッジ日時 2024-06-07 10:53:28
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,672 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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]) + [0])

    if N == 1:
        print(max(xyz[0]))
        exit()

    while True:
        xyz.sort(key= lambda p: p[1], reverse=True)
        ok = 1
        for i in range(N-1):
            if xyz[i+1][0] > xyz[i][0]:
                ok = 0
                x, y, z, w = xyz[i+1]
                if w == 0:
                    xyz[i+1] = [x, z, y, 1]
                elif w == 1:
                    xyz[i+1] = [z, y, x, 2]
                else:
                    continue
        if ok:
            ans = 0
            for i in range(N):
                ans += xyz[i][2]
            break
    print(ans)


if __name__ == '__main__':
    main()
0