Submission #255413

# Submission time Handle Problem Language Result Execution time Memory
255413 2020-07-31T21:53:33 Z aZvezda Uzastopni (COCI15_uzastopni) C++14
0 / 160
1 ms 384 KB
#include <bits/stdc++.h>
using namespace std;
//#pragma GCC optimize ("O3")
//#pragma GCC target ("sse4")
#define endl "\n"
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
template<class T, class T2> inline bool chkmax(T &x, const T2 &y) { return x < y ? x = y, 1 : 0; }
template<class T, class T2> inline bool chkmin(T &x, const T2 &y) { return x > y ? x = y, 1 : 0; }
const ll mod = 1e9 + 7;
template<class T> inline void fix(T &x) {if(x >= mod | x <= -mod) {x %= mod;} if(x < 0) {x += mod;}}
#define out(x) cout << __LINE__ << ": " << (#x) << " = " << (x) << endl

const int MAX_N = 1e4 + 10, MAX_VAL = 1e2 + 10;
ll dp[MAX_N][MAX_VAL][MAX_VAL];

signed main() {
    //ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
    return 0;
}


# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 256 KB Output isn't correct
2 Incorrect 0 ms 256 KB Output isn't correct
3 Incorrect 1 ms 256 KB Output isn't correct
4 Incorrect 0 ms 256 KB Output isn't correct
5 Incorrect 0 ms 256 KB Output isn't correct
6 Incorrect 0 ms 256 KB Output isn't correct
7 Incorrect 0 ms 256 KB Output isn't correct
8 Incorrect 0 ms 256 KB Output isn't correct
9 Incorrect 1 ms 384 KB Output isn't correct
10 Incorrect 0 ms 256 KB Output isn't correct
11 Incorrect 0 ms 256 KB Output isn't correct
12 Incorrect 1 ms 256 KB Output isn't correct
13 Incorrect 0 ms 256 KB Output isn't correct
14 Incorrect 0 ms 256 KB Output isn't correct
15 Incorrect 0 ms 256 KB Output isn't correct
16 Incorrect 0 ms 256 KB Output isn't correct
17 Incorrect 0 ms 256 KB Output isn't correct
18 Incorrect 0 ms 256 KB Output isn't correct
19 Incorrect 0 ms 256 KB Output isn't correct
20 Incorrect 0 ms 256 KB Output isn't correct