# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1048604 | 2024-08-08T08:39:15 Z | 우민규(#11036) | Bikeparking (EGOI24_bikeparking) | C++17 | 0 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; int n; void solve() { cin >> n; int x0, y0, x1, y1; cin >> y0 >> y1 >> x0 >> x1; int ans = 0; for (int x0ty0 = 0; x0ty0 <= min(x0, y0); ++x0ty0) { int x0ty1 = x0 - x0ty0; int x1ty0 = min(x1, y0 - x0ty0); int x1ty1 = y1 - x0ty1; if (x1ty1 < 0) continue; ans = max(ans, x1ty0 - x0ty1); } cout << ans << "\n"; } int main() { cin.tie(0)->sync_with_stdio(0); int t = 1; solve(); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Incorrect | 0 ms | 348 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Incorrect | 0 ms | 348 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |