답안 #473812

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
473812 2021-09-16T09:40:09 Z Ahmed_Solyman Euklid (COCI20_euklid) C++14
4 / 110
1 ms 284 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int main()
{
    ll t;cin>>t;
    while(t--){
        ll g,h;cin>>g>>h;
        if(g==h)cout<<g<<" "<<h<<endl;
        else{
            if(__gcd(2,1)==g)cout<<1<<" "<<2<<endl;
            else if(__gcd(2,0)==g)cout<<0<<" "<<2<<endl;
        }
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 284 KB Integer parameter [name=a] equals to 0, violates the range [1, 10^18]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 284 KB Integer parameter [name=a] equals to 0, violates the range [1, 10^18]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Incorrect 0 ms 204 KB Unexpected end of file - int64 expected
7 Halted 0 ms 0 KB -