| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 872052 | aeg | Euklid (COCI20_euklid) | C++17 | 1 ms | 516 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
inline int gcd(int a, int b) {
if(b==0) return a;
return gcd(b,a%b);
}
inline int edicul(int a, int b) {
if(a<b) return edicul(b,a);
if(b==1) return a;
return edicul(a/b,b);
}
void solve() {
int g,h;
cin >> g >> h;
if(g==h) cout << g << ' ' <<g<< endl;
else if(g==1 && h == 4) cout << "99 23\n";
else if(h==2) cout<<g*2<<" 2\n";
}
int main() {
int t;
cin >> t;
while(t--) solve();
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
