結果

問題 No.2555 Intriguing Triangle
ユーザー otoshigo
提出日時 2023-12-01 00:39:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 191,792 KB
最終ジャッジ日時 2025-02-18 02:42:09
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int a,b,c;
    cin>>a>>b>>c;
    if(b>c)swap(b,c);
    for(int l=c-b+1;l<b+c;l++){
        for(int i=1;i+a<l;i++){
            int j=l-i-a;
            if(b*i*(b*i+c*j+a*b)==c*j*(b*i+c*j+a*c)){
                cout<<"Yes"<<"\n";
                return 0;
            }
        }
    }
    cout<<"No"<<"\n";
}
0