# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
868909 | 2023-11-02T12:25:51 Z | F_Universe | Stove (JOI18_stove) | C++14 | 0 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; int main(){ int n,k; int x[n]; int y[n]; int sum=0; y[0]=0; for(int i=0;i<n;i++){ cin >>x[i]; } for(int i=1;i<n;i++){ y[i]=x[i]-x[i-1]; } sort(y,y+n); for(int i=0;i<n-k;i++){ sum+=y[i]+1; } printf("%d",sum); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |