제출 #391335

#제출 시각아이디문제언어결과실행 시간메모리
391335MrRobot_28Euklid (COCI20_euklid)C++17
110 / 110
2 ms308 KiB
#include<bits/stdc++.h> using namespace std; #define X first #define Y second #define sz(a) (int)a.size() #define ll long long #define int long long #define ld long double const int N = 3e5 + 100; signed main() { // ios_base::sync_with_stdio(0); // cin.tie(0); //cout.tie(0); int t; cin >> t; while(t--) { int g, h; cin >> g >> h; int h1 = h; while(h <= g) { h *= h1; } int b = (h + g - 1) / g; b *= g; int a = h1 * b + g; cout << a << " " << b << "\n"; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...