이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
long long count_tastiness(long long x, vector<long long>a) {
int k = a.size();
long long ans = 0;
for(int i = 1 ; i <= 100000 ; i++) {
int cnt = x;
if(100000 / i < x)
break;
vector<long long>b = a;
int got = 0;
while(cnt--) {
long long need = i;
for(int j = k-1 ; j >= 0 ; j--) {
if((1 << j) <= need) {
int c = min(b[j], need / (1 << j));
need -= c * (1 << j);
b[j] -= c;
}
}
if(!need)
got++;
else
break;
}
if(got == x)
ans++;
}
return ++ans;
}
# | 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... |