No.1423 Triangle of Multiples (★1.5) 別解

code

void solve(){
  ll a,b,c;cin>>a>>b>>c;

  // 各辺を1e18を超えない && 倍数の条件を満たす、最大の長さにする

  ll big = 1e18;
  ll x = (big/a)*a;
  ll y = (big/b)*b;
  ll z = (big/c)*c;
  cout << x << ' ' << y << ' ' << z << endl;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    ll T;cin>>T;
    while(T--){
      solve();
    }
    
    return 0;
}