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