# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
257275 | kshitij_sodani | Rima (COCI17_rima) | C++14 | 162 ms | 262148 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 <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
int co=0;
int pre[3000001][26];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
for(int i=0;i<3000001;i++){
for(int j=0;j<26;j++){
pre[i][j]=1;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |