# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
302610 | ASD3D | Carnival Tickets (IOI20_tickets) | Java | 0 ms | 0 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.
public class tickets {
long find_maximum(int k, int[][] x) {
int n = x.length;
int m = x[0].length;
int[][] answer = new int[n][m];
for (int i = 0; i < nl i++) {
answer[i][0] = 0;
}
/***
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (j < k) {
answer[i][j] = j;
} else {
answer[i][j] = -1;
}
}
}
***/
long ans = 0;
for (int i = 0; i < n; i++) {
ans += x[i][0];
}
ans -= n * x[n/2][0];
grader.allocate_tickets(answer);
return ans;
}
}