# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
160510 | 2019-10-28T08:43:46 Z | tushar_2658 | Brunhilda’s Birthday (BOI13_brunhilda) | C++14 | 1000 ms | 2296 KB |
#include "bits/stdc++.h" using namespace std; const int maxn = 100005; int a[maxn], dp[maxn], n, m; int solve(int x){ for(int i = 0; i < maxn; i++){ dp[i] = 1e8; } dp[0] = 0; for(int i = 1; i <= x; i++){ for(int j = 1; j <= n; j++){ dp[i] = min(dp[i], 1 + dp[i - (i % a[j])]); } } return dp[x]; } int main(int argc, char const *argv[]) { // freopen("in.txt", "r", stdin); scanf("%d %d", &n, &m); for(int i = 1; i <= n; i++){ scanf("%d", &a[i]); } int x; scanf("%d", &x); solve(x); printf("%d\n", dp[x]); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 760 KB | Output isn't correct |
2 | Incorrect | 3 ms | 760 KB | Output isn't correct |
3 | Incorrect | 2 ms | 632 KB | Output isn't correct |
4 | Incorrect | 2 ms | 632 KB | Output isn't correct |
5 | Incorrect | 2 ms | 760 KB | Output isn't correct |
6 | Incorrect | 2 ms | 760 KB | Output isn't correct |
7 | Incorrect | 2 ms | 760 KB | Output isn't correct |
8 | Incorrect | 2 ms | 632 KB | Output isn't correct |
9 | Incorrect | 2 ms | 760 KB | Output isn't correct |
10 | Incorrect | 3 ms | 764 KB | Output isn't correct |
11 | Incorrect | 4 ms | 764 KB | Output isn't correct |
12 | Incorrect | 3 ms | 632 KB | Output isn't correct |
13 | Incorrect | 38 ms | 760 KB | Output isn't correct |
14 | Incorrect | 2 ms | 760 KB | Output isn't correct |
15 | Incorrect | 3 ms | 760 KB | Output isn't correct |
16 | Incorrect | 3 ms | 760 KB | Output isn't correct |
17 | Incorrect | 2 ms | 760 KB | Output isn't correct |
18 | Incorrect | 2 ms | 760 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1059 ms | 760 KB | Time limit exceeded |
2 | Execution timed out | 1081 ms | 1528 KB | Time limit exceeded |
3 | Execution timed out | 1078 ms | 1272 KB | Time limit exceeded |
4 | Execution timed out | 1080 ms | 632 KB | Time limit exceeded |
5 | Execution timed out | 1073 ms | 1016 KB | Time limit exceeded |
6 | Execution timed out | 1065 ms | 1012 KB | Time limit exceeded |
7 | Execution timed out | 1072 ms | 760 KB | Time limit exceeded |
8 | Runtime error | 916 ms | 2296 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Execution timed out | 1083 ms | 1272 KB | Time limit exceeded |
10 | Execution timed out | 1084 ms | 1144 KB | Time limit exceeded |
11 | Execution timed out | 1078 ms | 888 KB | Time limit exceeded |
12 | Execution timed out | 1065 ms | 884 KB | Time limit exceeded |
13 | Execution timed out | 1070 ms | 760 KB | Time limit exceeded |
14 | Execution timed out | 1083 ms | 760 KB | Time limit exceeded |
15 | Execution timed out | 1090 ms | 888 KB | Time limit exceeded |
16 | Execution timed out | 1073 ms | 1528 KB | Time limit exceeded |
17 | Execution timed out | 1088 ms | 760 KB | Time limit exceeded |
18 | Execution timed out | 1075 ms | 1656 KB | Time limit exceeded |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1064 ms | 1144 KB | Time limit exceeded |
2 | Execution timed out | 1076 ms | 1144 KB | Time limit exceeded |
3 | Execution timed out | 1086 ms | 1144 KB | Time limit exceeded |
4 | Execution timed out | 1073 ms | 760 KB | Time limit exceeded |
5 | Execution timed out | 1087 ms | 1784 KB | Time limit exceeded |
6 | Execution timed out | 1084 ms | 760 KB | Time limit exceeded |
7 | Execution timed out | 1074 ms | 1784 KB | Time limit exceeded |
8 | Execution timed out | 1071 ms | 1144 KB | Time limit exceeded |
9 | Execution timed out | 1075 ms | 1144 KB | Time limit exceeded |
10 | Execution timed out | 1060 ms | 760 KB | Time limit exceeded |
11 | Execution timed out | 1067 ms | 760 KB | Time limit exceeded |
12 | Execution timed out | 1065 ms | 760 KB | Time limit exceeded |
13 | Execution timed out | 1090 ms | 888 KB | Time limit exceeded |
14 | Runtime error | 32 ms | 2040 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
15 | Execution timed out | 1070 ms | 760 KB | Time limit exceeded |
16 | Execution timed out | 1074 ms | 760 KB | Time limit exceeded |
17 | Execution timed out | 1065 ms | 1016 KB | Time limit exceeded |
18 | Execution timed out | 1078 ms | 1144 KB | Time limit exceeded |
19 | Execution timed out | 1083 ms | 760 KB | Time limit exceeded |
20 | Execution timed out | 1075 ms | 1144 KB | Time limit exceeded |
21 | Runtime error | 97 ms | 2188 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
22 | Execution timed out | 1071 ms | 1784 KB | Time limit exceeded |
23 | Execution timed out | 1086 ms | 1016 KB | Time limit exceeded |
24 | Execution timed out | 1048 ms | 2296 KB | Time limit exceeded |
25 | Execution timed out | 1076 ms | 760 KB | Time limit exceeded |
26 | Execution timed out | 1082 ms | 760 KB | Time limit exceeded |
27 | Execution timed out | 1077 ms | 1784 KB | Time limit exceeded |
28 | Runtime error | 926 ms | 2012 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
29 | Execution timed out | 1086 ms | 1788 KB | Time limit exceeded |
30 | Execution timed out | 1077 ms | 1400 KB | Time limit exceeded |
31 | Execution timed out | 1067 ms | 764 KB | Time limit exceeded |
32 | Execution timed out | 1083 ms | 760 KB | Time limit exceeded |
33 | Execution timed out | 1079 ms | 1144 KB | Time limit exceeded |
34 | Execution timed out | 1086 ms | 1784 KB | Time limit exceeded |
35 | Execution timed out | 1071 ms | 1012 KB | Time limit exceeded |
36 | Execution timed out | 1057 ms | 1784 KB | Time limit exceeded |
37 | Execution timed out | 1087 ms | 1784 KB | Time limit exceeded |
38 | Execution timed out | 1083 ms | 760 KB | Time limit exceeded |
39 | Execution timed out | 1079 ms | 760 KB | Time limit exceeded |
40 | Execution timed out | 1087 ms | 760 KB | Time limit exceeded |
41 | Execution timed out | 1085 ms | 1784 KB | Time limit exceeded |
42 | Execution timed out | 1085 ms | 760 KB | Time limit exceeded |