답안 #240693

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
240693 2020-06-20T17:47:33 Z aryan12 게임 (IOI13_game) C++17
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>
#include "game.h"
using namespace std;

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;
}

int a[101][101];

void init(int r, int c) {
    for(int i = 0; i <= r; i++) {
        for(int j = 0; j <= c; j++) {
            a[i][j] = 0;
        }
    }
}

void update(int r, int c, long long val) {
    a[r][c] = val;
}

long long calculate(int r1, int c1, int r2, int c2) {
    long long ans = 0;
    for(int i = r1; i <= r2; i++) {
        for(int j = c1; j <= c2; j++) {
            ans = gcd2(ans, a[i][j]);
        }
    }
    return ans;
}

/*int main() {
    int x, y, n;
    cin >> x >> y >> n;
    init(x, y);
    while(n--) {
        int com;
        cin >> com;
        if(com == 1) {
            int r, c;
            long long val;
            cin >> r >> c >> val;
            update(r, c, val);
        }
        else {
            int a, b, c, d;
            cin >> a >> b >> c >> d;
            cout << calculate(a, b, c, d) << endl;
        }
    }
}*/

Compilation message

grader.c: In function 'int main()':
grader.c:18:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
  int res;
      ^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -