이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
vector<long long> powr;
long long count_tastiness(long long x,vector<long long> a) {
powr.push_back(1);
for(int i=1;i<=61;i++){
powr.push_back(powr.back()*2);
}
reverse(a.begin(),a.end());
int res = 1;
for(int y=1;y<=200000;y++){
//cerr<<y<<": \n";
long long curr = y;
int pwr = a.size() -1;
for(auto i:a){
long long cnt = i;
long long p = powr[pwr];
long long take = min(cnt,curr/p);
curr -= take*p;
pwr--;
}
if(curr == 0)res++;
//cerr<<curr<<'\n';
}
return res;
}
// run biscuits 03.in 03.out
# | 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... |