# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1100377 |
2024-10-13T16:24:19 Z |
codexistent |
Kas (COCI17_kas) |
C++14 |
|
223 ms |
524288 KB |
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define MAXN 505
#define MAXS 200005
#define FOR(i, a, b) for(ll i = a; i <= b; i++)
ll n, dp[MAXN][MAXS], s = 0;
int main(){
cin >> n;
if(n > 500) cout << " WTh " << endl;
FOR(i, 0, n) FOR(j, 0, MAXS - 5) dp[i][j] = MAXS;
/*dp[0][100000] = 0;
FOR(i, 1, n){
int x; cin >> x;
s += x;
FOR(j, x, 200000 - x){
dp[i][j - x] = min(dp[i][j - x], dp[i - 1][j]);
dp[i][j + x] = min(dp[i][j + x], dp[i - 1][j]);
dp[i][j] = min(dp[i][j], dp[i - 1][j] + x);
}
} */
// cout << ((s - dp[n][100000]) / 2 + dp[n][100000]) << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
19024 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
19024 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
19024 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
21072 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
23120 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
57936 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
74332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
67 ms |
315064 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
172 ms |
471552 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
223 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |