結果

問題 No.1423 Triangle of Multiples
ユーザー chacoder1chacoder1
提出日時 2021-03-25 20:50:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 200,196 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-05 10:11:29
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<n;i++)
typedef pair<int,int>P;

ll x[3];
int main(){
  int t;
  cin>>t;
  rep(i,t){
    ll a,b,c;
    cin>>a>>b>>c;
    x[0]=a;
    x[1]=b;
    x[2]=c;
    while(1){
    if(a+b>c && a+c>b && a<b+c){
      cout<<a<<" "<<b<<" "<<c<<endl;
      return 0;
    }
    if(a>b && b>c){
      c+=x[2];
      continue;
    }
    if(a<b && b<c){
      a+=x[0];
      continue;
    }
    if(b<a && b<c){
      b+=x[1];
      continue;
    }
    }
  }
}
0