# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
478711 | andrey27_sm | Game (IOI13_game) | C++17 | 0 ms | 0 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;map<pair<int,int>,long long> mp;void init(int c,int r){}void update(int x,int y,long long val){pair<int,int> t = {x,y}mp[t] = val;}long long calculate (int x1,int y1,int x2,int y2){long long ans=0;for(auto p:mp){ int x= p.first.first;int y = p.first.second;long long val = p.second;if(x1 <= x and x<= x2 and y1<=y and y<=y2) ans = __gcd(ans,val);}return ans;}