# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1023536 | Ahmed_Solyman | 비스킷 담기 (IOI20_biscuits) | C++14 | 97 ms | 352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll count_tastiness(ll x,vector<ll> a){
if(x==1){
while(a.size()<=60)a.push_back(0);\
ll ans=1;
int j=0;
for(int i=0;i<60;i++){
if(!a[i])ans*=1LL<<i-j,j=i+1;
else{
if(a[i]>=3)a[i+1]+=(a[i]-3)>>1LL+1;
}
}
return ans;
}
if(x>100000)return 1;
int k=(int)a.size();
vector<ll>g=a;
int ret=0;
for(int y=0;y<=100000/x+5;y++){
a=g;
int cnt=0;
for(int j=0;j<x;j++){
ll u=y;
for(int p=k-1;p>=0;p--){
ll t=min(a[p],u/(1LL<<p));
a[p]-=t;
u-=t*(1LL<<p);
}
if(!u)++cnt;
}
ret+=(cnt==x);
}
return ret;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |