Skip to content

Instantly share code, notes, and snippets.

@attatrol
attatrol / game.cpp
Created April 9, 2020 17:35 — forked from msg555/game.cpp
Problem "Game" From IOI 2013 Day 2
#include "game.h"
#define MAXR 1000000000
#define MAXC 1000000000
#include <assert.h>
#include <stddef.h>
long long gcd2(long long X, long long Y) {
if(X == 0 || Y == 0) {