結果

問題 No.2555 Intriguing Triangle
ユーザー Hi_mathHi_math
提出日時 2023-12-01 11:38:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 200,836 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 15:33:51
合計ジャッジ時間 2,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
	int64_t a,b,c;
	cin>>a>>b>>c;
	int m=b+c-a;
	for(int i=1;i<(m-1);i++){
		for(int j=1;j<(m-i);j++){
			int64_t n=a+i+j;
			int64_t cosc=(c*c+n*n-b*b);
			int64_t y=2*c*n*(c*c+(a+j)*(a+j))-2*c*(a+j)*cosc;
			int64_t x=2*c*n*(c*c+j*j)-2*c*j*cosc;
			int64_t s=j*b*j*b*y;
			int64_t t=i*i*c*c*x;
			if(s==t){
				cout<<"Yes"<<endl;
				return 0;
			}
		}
	}
	cout<<"No"<<endl;
	return 0;
	
}
0