結果

問題 No.2555 Intriguing Triangle
ユーザー mkawa2mkawa2
提出日時 2023-12-02 18:18:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,657 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,128 KB
最終ジャッジ日時 2024-09-26 21:22:07
合計ジャッジ時間 10,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,984 KB
testcase_01 AC 96 ms
76,032 KB
testcase_02 AC 79 ms
73,728 KB
testcase_03 AC 97 ms
76,160 KB
testcase_04 AC 135 ms
76,672 KB
testcase_05 AC 52 ms
59,520 KB
testcase_06 AC 45 ms
58,752 KB
testcase_07 AC 60 ms
65,536 KB
testcase_08 AC 76 ms
73,088 KB
testcase_09 AC 148 ms
76,288 KB
testcase_10 AC 597 ms
78,624 KB
testcase_11 AC 713 ms
76,288 KB
testcase_12 AC 1,304 ms
79,376 KB
testcase_13 AC 960 ms
78,372 KB
testcase_14 AC 651 ms
78,500 KB
testcase_15 AC 365 ms
76,928 KB
testcase_16 AC 474 ms
76,672 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 115 ms
75,904 KB
testcase_19 AC 60 ms
64,000 KB
testcase_20 AC 41 ms
52,864 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

# 実数 a√b/c
class Real:
    def gcd(self,a,b):
        while b:a,b=b,a%b
        return a

    def __init__(self,a,b=1,c=1):
        assert b>0 and c>0
        while b&3==0:
            b>>=2
            a<<=1
        p=3
        while 1:
            q=p**2
            while b%q==0:
                b//=q
                a*=p
            if q>b:break
            p+=2
        g=self.gcd(a,c)
        a//=g
        c//=g
        self.a,self.b,self.c=a,b,c

    def __add__(self, other):
        assert self.b==other.b
        g=self.gcd(self.c,other.c)
        c=self.c*other.c//g
        a=self.a*other.c//g+self.c*other.a//g
        return Real(a,self.b,c)

    def __sub__(self, other):
        assert self.b==other.b
        g=self.gcd(self.c,other.c)
        c=self.c*other.c//g
        a=self.a*other.c//g-self.c*other.a//g
        return Real(a,self.b,c)

    def __mul__(self, other):
        return Real(self.a*other.a,self.b*other.b,self.c*other.c)

    def __truediv__(self, other):
        return self*Real(other.c,other.b,other.a*other.b)

    def __eq__(self, other):
        return self.a==other.a and self.b==other.b and self.c==other.c

    def sqrt(self):
        assert self.b==1
        return Real(1,self.a*self.c,self.c)

    def __repr__(self):
        return str(self.a)+"√"+str(self.b)+"/"+str(self.c)

def yog(b,c,cosA):
    return (b*b+c*c-Real(2)*b*c*cosA).sqrt()

def inv_yog(a,b,c):
    return (b*b+c*c-a*a)/(Real(2)*b*c)

def f(a,b,c,x,y):
    a=Real(a)
    b=Real(b)
    c=Real(c)
    x=Real(x)
    y=Real(y)
    cosB=inv_yog(c,b,x+a+y)
    AD=yog(b,x,cosB)
    res=inv_yog(x,b,AD)
    return res

a=II()
b=II()
c=II()
if b<c:b,c=c,b

for x in range(1,b+c-a-1):
    for y in range(max(1,b+1-x-a-c),b+c-x-a):
        # print(x,y,f(a,b,c,x,y),f(a,c,b,y,x))
        if f(a,b,c,x,y)==f(a,c,b,y,x):
            print("Yes")
            exit()

print("No")
0