# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
415419 | 2021-06-01T05:20:04 Z | 조영욱(#7635) | Road Construction (JOI21_road_construction) | C++17 | 3168 ms | 2097156 KB |
#include <bits/stdc++.h> using namespace std; typedef pair<int,int> P; P arr[250000]; int main(void) { int n,k; scanf("%d %d",&n,&k); for(int i=0;i<n;i++) { scanf("%d %d",&arr[i].first,&arr[i].second); } vector<int> ret; for(int i=0;i<n;i++) { for(int j=i+1;j<n;j++) { ret.push_back(abs(arr[i].first-arr[j].first)+abs(arr[i].second-arr[j].second)); } } sort(ret.begin(),ret.end()); for(int i=0;i<k;i++) { printf("%d\n",ret[i]); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 98 ms | 4968 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3168 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2496 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2496 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 98 ms | 4968 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 98 ms | 4968 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |