結果
問題 | No.1045 直方体大学 |
ユーザー | tamato |
提出日時 | 2020-05-01 22:32:29 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 879 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2024-06-07 10:50:57 |
合計ジャッジ時間 | 1,953 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,096 KB |
testcase_01 | AC | 38 ms
51,712 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 38 ms
52,096 KB |
testcase_18 | AC | 37 ms
52,352 KB |
ソースコード
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: assert False if ok: ans = 0 for i in range(N): ans += xyz[i][2] break print(ans) if __name__ == '__main__': main()