# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1016830 | 2024-07-08T13:03:24 Z | vjudge1 | Checker (COCI19_checker) | C++17 | 129 ms | 15240 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
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 129 ms | 15240 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 125 ms | 14588 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |