- 別解法なので書いておく
- 問題 https://yukicoder.me/problems/no/1423
- AC https://yukicoder.me/submissions/1008560
- 解法 各辺を1e18を超えない && 倍数の条件を満たす、最大の長さにする
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; }