Submission #872046

# Submission time Handle Problem Language Result Execution time Memory
872046 2023-11-12T07:54:42 Z aeg Euklid (COCI20_euklid) C++14
0 / 110
0 ms 348 KB
#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 << ' ' << endl;
}
int main() {
    int t;
    cin >> t;
    while(t--) solve();
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -