結果

問題 No.2555 Intriguing Triangle
ユーザー 👑 p-adicp-adic
提出日時 2023-12-01 14:57:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-09-26 15:38:03
合計ジャッジ時間 2,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 58 ms
63,104 KB
testcase_02 AC 56 ms
61,312 KB
testcase_03 AC 61 ms
61,056 KB
testcase_04 AC 57 ms
61,952 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 52 ms
59,776 KB
testcase_09 AC 66 ms
65,280 KB
testcase_10 AC 73 ms
67,840 KB
testcase_11 AC 74 ms
67,328 KB
testcase_12 AC 75 ms
67,968 KB
testcase_13 WA -
testcase_14 AC 75 ms
67,328 KB
testcase_15 WA -
testcase_16 AC 66 ms
65,408 KB
testcase_17 AC 42 ms
52,224 KB
testcase_18 AC 57 ms
61,936 KB
testcase_19 AC 42 ms
52,096 KB
testcase_20 AC 74 ms
65,408 KB
testcase_21 AC 68 ms
65,152 KB
testcase_22 AC 47 ms
57,984 KB
testcase_23 AC 40 ms
52,864 KB
testcase_24 AC 48 ms
60,416 KB
testcase_25 AC 51 ms
61,312 KB
testcase_26 AC 60 ms
65,024 KB
testcase_27 AC 63 ms
66,560 KB
testcase_28 AC 41 ms
51,712 KB
testcase_29 AC 61 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
I=lambda:int(input())
f=I()
b=I()
c=I()
t=1
g=b+c-f-1
for d in R(1,g):
	for e in R(1,g-d+1):
		a=d+f+e
		s=a+b+c
		S=s*(s-2*a)*(s-2*b)*(s-2*c)
		i=4*a*a*b*b-S
		j=4*a*a*c*c-S
		l,r=0,i+1
		while l<r-1:
			k=(l+r)//2
			if k*k>i:r=k
			else:l=k
		k=l
		l,r=0,j+1
		while l<r-1:
			n=(l+r)//2
			if n*n>j:r=n
			else:l=n
		n=l
		if k*k==i and n*n==j and 2*a*(b*b*e-c*c*d)==(k-n)*d*e:t=0
print("YNeos"[t::2])
0