# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
19828 | xhae | 동전 (kriii4_E) | C++14 | 154 ms | 2744 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 <math.h>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <string>
#include <queue>
#include <map>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <sstream>
#include <set>
using namespace std;
const int mmod = 1000000007;
int prv[256][512]; // successive previous H, current grundy
int nxt[256][512];
vector<int> grundy;
void run_init(int n)
{
for (int i=0; i<256; i++)
for (int j=0; j<512; j++)
prv[i][j] = nxt[i][j] = 0;
prv[0][0] = 1;
for (int i=0; i<=n; i++) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |