結果

問題 No.2555 Intriguing Triangle
ユーザー ニックネームニックネーム
提出日時 2023-12-01 01:03:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 11,776 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2023-12-01 13:40:36
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,112 KB
testcase_01 AC 32 ms
10,112 KB
testcase_02 AC 32 ms
10,112 KB
testcase_03 AC 32 ms
10,112 KB
testcase_04 AC 33 ms
10,112 KB
testcase_05 AC 32 ms
10,112 KB
testcase_06 AC 32 ms
10,112 KB
testcase_07 AC 32 ms
10,112 KB
testcase_08 AC 31 ms
10,112 KB
testcase_09 AC 34 ms
10,112 KB
testcase_10 AC 41 ms
10,112 KB
testcase_11 AC 42 ms
10,112 KB
testcase_12 AC 44 ms
10,112 KB
testcase_13 AC 40 ms
10,112 KB
testcase_14 AC 43 ms
10,112 KB
testcase_15 AC 35 ms
10,112 KB
testcase_16 AC 35 ms
10,112 KB
testcase_17 AC 31 ms
10,112 KB
testcase_18 AC 33 ms
10,112 KB
testcase_19 AC 32 ms
10,112 KB
testcase_20 AC 78 ms
10,112 KB
testcase_21 AC 78 ms
10,112 KB
testcase_22 AC 30 ms
10,112 KB
testcase_23 AC 32 ms
10,112 KB
testcase_24 AC 33 ms
10,112 KB
testcase_25 AC 33 ms
10,112 KB
testcase_26 AC 37 ms
10,112 KB
testcase_27 AC 35 ms
10,112 KB
testcase_28 AC 31 ms
10,112 KB
testcase_29 AC 34 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

de,ab,ac = int(input()),int(input()),int(input())
f = False
for bd in range(1,ab+ac-de):
    for ec in range(1,ab+ac-de-bd):
        bc = bd+de+ec
        if ab+bc<=ac or ac+bc<=ab: continue
        ad = (ab*ab+bd*bd-(ab*ab+bc*bc-ac*ac)*bd/bc)**0.5
        ae = (ac*ac+ec*ec-(ac*ac+bc*bc-ab*ab)*ec/bc)**0.5
        if abs((ab*ab+ad*ad-bd*bd)*ac*ae-(ac*ac+ae*ae-ec*ec)*ab*ad)<1e-5: f = True
print("Yes" if f else "No")
0