# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
948942 | 2024-03-18T16:52:01 Z | IBory | 라멘 (JOI14_ramen) | C++17 | 0 ms | 348 KB |
#include <bits/stdc++.h> #include "ramen.h" using namespace std; void Ramen(int N) { vector<int> L, R; for (int i = 0; i < N - 1; i += 2) { int n = Compare(i, i + 1); (n ? R : L).push_back(i + 1); (n ? L : R).push_back(i); } if (N & 1) L.push_back(N - 1), R.push_back(N - 1); int a = L[0], b = R[0]; for (int i = 1; i < L.size(); ++i) if (Compare(a, L[i])) a = L[i]; for (int i = 1; i < R.size(); ++i) if (Compare(R[i], b)) b = R[i]; Answer(a, b); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |