# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
388039 | 2021-04-09T19:35:06 Z | Pichon5 | 쌀 창고 (IOI11_ricehub) | C++17 | 1000 ms | 724 KB |
#include "ricehub.h" #include <bits/stdc++.h> #define vi vector<int> #define pb push_back #define ll long long int using namespace std; int besthub(int R, int L, int X[], long long B) { int res=0; for(int i=0;i<R;i++){ vi v; for(int l=i;l<R;l++){ v.pb(i); int ans=0; ll Baux=B; int mid=v.size()/2; for(int j=0;j<v.size();j++){ if(Baux-(v[j]-v[mid])>=0){ ans++; Baux-=(v[j]-v[mid]); } } res=max(res,ans); } } return res; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 304 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1072 ms | 724 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |