結果
問題 | No.2790 Athena 3 |
ユーザー | mattu34 |
提出日時 | 2024-06-21 21:37:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 150 ms / 2,000 ms |
コード長 | 2,646 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 82,600 KB |
実行使用メモリ | 89,128 KB |
最終ジャッジ日時 | 2024-06-21 21:37:59 |
合計ジャッジ時間 | 3,616 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
89,036 KB |
testcase_01 | AC | 129 ms
88,932 KB |
testcase_02 | AC | 133 ms
88,772 KB |
testcase_03 | AC | 127 ms
88,832 KB |
testcase_04 | AC | 129 ms
88,880 KB |
testcase_05 | AC | 147 ms
88,904 KB |
testcase_06 | AC | 132 ms
88,872 KB |
testcase_07 | AC | 127 ms
88,928 KB |
testcase_08 | AC | 130 ms
88,764 KB |
testcase_09 | AC | 125 ms
89,128 KB |
testcase_10 | AC | 127 ms
88,896 KB |
testcase_11 | AC | 127 ms
88,884 KB |
testcase_12 | AC | 134 ms
88,968 KB |
testcase_13 | AC | 147 ms
88,976 KB |
testcase_14 | AC | 131 ms
88,896 KB |
testcase_15 | AC | 135 ms
88,752 KB |
testcase_16 | AC | 150 ms
88,888 KB |
ソースコード
from collections import * import sys import heapq import bisect import itertools from functools import lru_cache from types import GeneratorType from fractions import Fraction import math import copy import random # sys.setrecursionlimit(int(1e7)) # @lru_cache(maxsize=None) # CPython特化 # @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに def bootstrap(f, stack=[]): # yield def wrappedfunc(*args, **kwargs): if stack: return f(*args, **kwargs) else: to = f(*args, **kwargs) while True: if type(to) is GeneratorType: stack.append(to) to = next(to) else: stack.pop() if not stack: break to = stack[-1].send(to) return to return wrappedfunc dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0)) # 上下右左 dxdy2 = ( (0, 1), (0, -1), (1, 0), (-1, 0), (1, 1), (-1, -1), (1, -1), (-1, 1), ) # 8方向すべて dxdy3 = ((0, 1), (1, 0)) # 右 or 下 dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1)) # 斜め INF = float("inf") _INF = 1 << 60 MOD = 998244353 mod = 998244353 MOD2 = 10**9 + 7 mod2 = 10**9 + 7 # memo : len([a,b,...,z])==26 # memo : 2^20 >= 10^6 # 小数の計算を避ける : x/y -> (x*big)//y ex:big=10**9 # @:小さい文字, ~:大きい文字,None: 空の文字列 # ユークリッドの互除法:gcd(x,y)=gcd(x,y-x) # memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての # 非負整数を表現することができる # memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大 # memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x) # memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋ input = lambda: sys.stdin.readline().rstrip() mi = lambda: map(int, input().split()) li = lambda: list(mi()) ii = lambda: int(input()) py = lambda: print("Yes") pn = lambda: print("No") pf = lambda: print("First") ps = lambda: print("Second") # 3点の座標から三角形の面積を計算 def triangle_area(x1, y1, x2, y2, x3, y3): area = 0.5 * abs(x1 * (y2 - y3) + x2 * (y3 - y1) + x3 * (y1 - y2)) return area x1, y1, x2, y2, x3, y3 = mi() ans = 0 for dx1, dy1 in dxdy1: for dx2, dy2 in dxdy1: for dx3, dy3 in dxdy1: ans = max( ans, triangle_area( x1 + dx1, y1 + dy1, x2 + dx2, y2 + dy2, x3 + dx3, y3 + dy3 ), ) print(ans)