# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1016832 | 2024-07-08T13:06:33 Z | Ghulam_Junaid | Checker (COCI19_checker) | C++17 | 151 ms | 12792 KB |
#include <bits/stdc++.h> using namespace std; int main(){ int g, n; string s; cin >> g >> n >> s; vector<vector<int>> vec; for (int i = 1; i <= n - 3; i ++){ int x, y, c; cin >> x >> y >> c; if (x > y) swap(x, y); vec.push_back({x, y, i}); } sort(vec.begin(), vec.end()); bool good = 1; for (int i = 1; i < vec.size(); i ++){ if (vec[i][0] >= vec[i - 1][1]) continue; if (vec[i][1] <= vec[i - 1][1]) continue; good = 0; } if (!good){ cout << "neispravna triangulacija" << endl; return 0; } cout << "tocno" << endl; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 123 ms | 12452 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 151 ms | 12792 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |