結果

問題 No.2555 Intriguing Triangle
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-01 18:10:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-09-26 15:47:05
合計ジャッジ時間 2,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,112 KB
testcase_01 AC 48 ms
58,496 KB
testcase_02 AC 49 ms
58,624 KB
testcase_03 AC 46 ms
58,624 KB
testcase_04 AC 52 ms
61,312 KB
testcase_05 AC 45 ms
57,856 KB
testcase_06 AC 44 ms
57,856 KB
testcase_07 AC 44 ms
58,240 KB
testcase_08 AC 44 ms
57,984 KB
testcase_09 AC 55 ms
62,464 KB
testcase_10 AC 69 ms
67,840 KB
testcase_11 AC 55 ms
62,464 KB
testcase_12 AC 56 ms
62,720 KB
testcase_13 AC 70 ms
67,456 KB
testcase_14 AC 71 ms
68,096 KB
testcase_15 AC 53 ms
62,208 KB
testcase_16 AC 59 ms
63,616 KB
testcase_17 AC 46 ms
57,856 KB
testcase_18 AC 52 ms
61,056 KB
testcase_19 AC 44 ms
57,984 KB
testcase_20 AC 63 ms
65,792 KB
testcase_21 WA -
testcase_22 AC 46 ms
57,984 KB
testcase_23 AC 45 ms
58,240 KB
testcase_24 AC 46 ms
58,496 KB
testcase_25 AC 51 ms
61,056 KB
testcase_26 AC 57 ms
63,616 KB
testcase_27 AC 55 ms
61,952 KB
testcase_28 AC 44 ms
57,856 KB
testcase_29 AC 58 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())
ans = "No"
for x in range(1, 200):
    for y in range(1, 200):
        z = x + y + a
        if not z < b + c:
            continue
        if not b < c + z:
            continue
        if not c < b + z:
            continue
        cosB = (b**2 + z**2 - c**2) / (2 * b * z)
        p = (b**2 + x**2 - 2 * b * x * cosB) ** 0.5
        costheta = (b**2 + p**2 - x**2) / (2 * b * p)
        cosC = (c**2 + z**2 - b**2) / (2 * c * z)
        q = (c**2 + y**2 - 2 * c * y * cosC) ** 0.5
        cosphi = (c**2 + q**2 - y**2) / (2 * c * q)
        EPS = 10 ** (-5)
        if abs(costheta - cosphi) < EPS:
            ans = "Yes"
print(ans)
0