結果

問題 No.2555 Intriguing Triangle
ユーザー hiro1729hiro1729
提出日時 2023-11-30 17:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-09-26 15:18:38
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
51,456 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 AC 58 ms
63,104 KB
testcase_11 AC 48 ms
59,264 KB
testcase_12 AC 63 ms
65,024 KB
testcase_13 AC 43 ms
52,608 KB
testcase_14 AC 50 ms
60,032 KB
testcase_15 AC 47 ms
58,112 KB
testcase_16 AC 50 ms
59,008 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 43 ms
52,352 KB
testcase_19 AC 42 ms
51,584 KB
testcase_20 AC 42 ms
51,712 KB
testcase_21 AC 89 ms
75,392 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 42 ms
52,096 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 46 ms
57,728 KB
testcase_27 AC 46 ms
57,984 KB
testcase_28 AC 45 ms
57,344 KB
testcase_29 AC 50 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())
for x in range(abs(b - c) + 1, b + c):
	for d in range(1, x):
		e = x - a - d
		if e >= 1:
			if (2 * b * b * x - d * (b * b + x * x - c * c)) ** 2 * ((c * c + e * e) * x - e * (c * c + x * x - b * b)) * c * c == (2 * c * c * x - e * (c * c + x * x - b * b)) ** 2 * ((b * b + d * d) * x - d * (b * b + x * x - c * c)) * b * b:
				exit(print("Yes"))
print("No")
0