結果

問題 No.2555 Intriguing Triangle
ユーザー 👑 rin204rin204
提出日時 2023-12-01 22:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-09-26 15:58:41
合計ジャッジ時間 2,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())


def f(a, b, c, l, r):
    x = l + a + r
    t = (b * b + x * x - c * c) / (2 * b * x)
    d2 = b * b + l * l - 2 * b * l * t
    s = (1 - t * t) ** 0.5
    return s * s / d2 * l * l


for d in range(a + 2, b + c):
    if d + b <= c or d + c <= b:
        continue
    for l in range(1, d - a):
        r = d - a - l
        t1 = f(a, b, c, l, r)
        t2 = f(a, c, b, r, l)
        if abs(t1 - t2) < 1e-7:
            print("Yes")
            exit()
print("No")
0