# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|
282047 | | rqi | 게임 (IOI13_game) | C++14 | | 1 ms | 512 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef vector<pi> vpi;
typedef long double ld;
#define f first
#define s second
#define mp make_pair
#define bk back()
#define pb push_back
const ld PI = acos((ld)-1);
int MAXX = 1000000000;
int MAXY = 1000000000;
long long gcd2(long long X, long long Y) {
long long tmp;
while (X != Y && Y != 0) {
tmp = X;
X = Y;
Y = tmp % Y;
}
return X;
}
ll val[105][105];
void init(int R, int C) {
}
void update(int P, int Q, long long K) {
//cout << "UPDATE " << P << " " << Q << " " << K << "\n";
val[P][Q] = K;
}
ll calculate(int lox, int loy, int hix, int hiy) {
ll res = 0;
for(int i = lox; i <= hix; i++){
for(int j = loy; j <= hiy; j++){
res = gcd2(res, val[i][j]);
}
}
//cout << "QUERY " << lox << " " << hix << " " << loy << " " << hiy << "\n";
return res;
}
Compilation message (stderr)
grader.c: In function 'int main()':
grader.c:18:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
18 | int res;
| ^~~
# | 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... |