結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,992 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 39 ms
58,496 KB
testcase_04 AC 41 ms
59,904 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 35 ms
52,736 KB
testcase_09 AC 47 ms
62,720 KB
testcase_10 AC 61 ms
69,760 KB
testcase_11 AC 52 ms
64,768 KB
testcase_12 AC 51 ms
65,152 KB
testcase_13 AC 56 ms
67,200 KB
testcase_14 AC 59 ms
69,632 KB
testcase_15 AC 49 ms
64,000 KB
testcase_16 AC 47 ms
62,720 KB
testcase_17 AC 34 ms
51,840 KB
testcase_18 AC 39 ms
59,136 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 53 ms
66,176 KB
testcase_21 WA -
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 34 ms
52,224 KB
testcase_24 AC 40 ms
59,776 KB
testcase_25 AC 44 ms
60,800 KB
testcase_26 AC 45 ms
62,080 KB
testcase_27 AC 47 ms
63,872 KB
testcase_28 AC 37 ms
57,728 KB
testcase_29 AC 49 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())
ans = "No"
for x in range(1, b + c + 1):
    for y in range(1, b + c + 1):
        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