結果

問題 No.2555 Intriguing Triangle
ユーザー nikoro256nikoro256
提出日時 2023-12-02 01:17:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 78,560 KB
最終ジャッジ日時 2024-09-26 16:11:12
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,420 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 46 ms
53,836 KB
testcase_06 AC 47 ms
58,172 KB
testcase_07 AC 49 ms
59,528 KB
testcase_08 AC 46 ms
53,692 KB
testcase_09 AC 44 ms
52,896 KB
testcase_10 AC 45 ms
54,356 KB
testcase_11 AC 99 ms
75,840 KB
testcase_12 AC 239 ms
77,008 KB
testcase_13 AC 55 ms
61,884 KB
testcase_14 AC 46 ms
53,304 KB
testcase_15 AC 64 ms
64,756 KB
testcase_16 AC 89 ms
75,476 KB
testcase_17 AC 48 ms
59,140 KB
testcase_18 WA -
testcase_19 AC 48 ms
58,224 KB
testcase_20 AC 44 ms
52,528 KB
testcase_21 AC 397 ms
78,560 KB
testcase_22 WA -
testcase_23 AC 39 ms
53,712 KB
testcase_24 AC 40 ms
52,824 KB
testcase_25 AC 40 ms
53,020 KB
testcase_26 AC 56 ms
64,172 KB
testcase_27 AC 81 ms
73,916 KB
testcase_28 AC 44 ms
59,176 KB
testcase_29 AC 77 ms
71,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

a=int(input())
b=int(input())
c=int(input())
p=10**9+7
for d in range(1,201):
    for e in range(1,201):
        if b+c>a+d+e:
            cosb=(b**2+(d+a+e)**2-c**2)*mod_inv(2*b*(d+a+e),p)%p
            sinbad=d**2*(1-cosb**2)*mod_inv(b**2+d**2-2*b*d*cosb,p)
            cosc=(-b**2+(d+a+e)**2+c**2)*mod_inv(2*c*(d+a+e),p)
            sineac=e**2*(1-cosc**2)*mod_inv(c**2+e**2-2*c*e*cosc,p)
            #cosabcが正か負かの判定をする。
            bool1=2*b**2-2*b*d*cosb>0
            bool2=2*c**2-2*c*e*cosc>0
            if sinbad%p==sineac%p and bool1==bool2:
                print('Yes')
                exit(0)
print('No')
0