# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
655196 | 2022-11-03T14:19:05 Z | PanTkd | 쌀 창고 (IOI11_ricehub) | C++14 | 1000 ms | 468 KB |
#include "ricehub.h" #include <iostream> #include <cmath> typedef long long ll; using namespace std; int besthub(int R, int L, int X[], long long B) { for(ll i = R;i>=1;i--){ for(ll j = 0;j<R-i;j++){ ll cost = 0; ll med = i/2+j; for(ll k = j ;k<=j+i-1 && k<=R;k++){ cost+= abs(X[med]-X[k]); } if(cost<=B) return i; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 340 KB | Output is correct |
3 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 2 ms | 212 KB | Output is correct |
3 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1081 ms | 468 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |