# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
900246 | nguyentunglam | 비스킷 담기 (IOI20_biscuits) | C++17 | 1056 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define fi first
#define se second
#define endl "\n"
#define ii pair<int, int>
using namespace std;
const int N = 110;
long long a[N];
long long count_tastiness(long long x, vector<long long> A) {
for(int i = 0; i < A.size(); i++) a[i] = A[i];
long long ret = 1;
for(int y = 1; y <= 1e5; y++) {
long long tmp = y;
long long cur = 0;
for(int j = 60; j >= 0; j--) {
cur *= 2;
if (tmp >> j & 1) cur += x;
cur = max(0LL, cur - a[j]);
}
if (!cur) ret++;
// if (!cur) cout << y << endl;
}
return ret;
}
#ifdef ngu
int main() {
freopen ("task.inp", "r", stdin);
freopen ("task.out", "w", stdout);
int q; cin >> q;
while (q--) {
long long k, x;
cin >> k >> x;
vector<long long> a(k);
for(int i = 0; i < k; i++) cin >> a[i];
cout << count_tastiness(x, a) << endl;
}
}
#endif // ngu
컴파일 시 표준 에러 (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... |