# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1170584 | InvMOD | Restore Array (RMI19_restore) | C++20 | 185 ms | 99032 KiB |
#include<bits/stdc++.h>
using namespace std;
#define sz(v) (int)(v).size()
struct Edge{
int u,v,w;
Edge(int _u = 0, int _v = 0, int _w = 0){
u = _u,
v = _v,
w = _w;
}
};
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#define name "InvMOD"
freopen(name".INP", "r", stdin);
freopen(name".OUT", "w", stdout);
int n,m; cin >> n >> m;
vector<Edge> E;
for(int i = 0; i < m; i++){
int l,r,k,value;
Compilation message (stderr)
# | 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... |