# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1066001 | Ahmed57 | 비스킷 담기 (IOI20_biscuits) | C++17 | 1098 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define int long long
long long count_tastiness(long long x,vector<long long> a){
int k = a.size();
int ans = 0;
for(int i = 0;i<a.size();i++){
ans/=2;
ans+=a[i];
}
while(ans>1){
ans/=2;
a.push_back(0);
}
k = a.size();
long long all =0;
for(int val = 0;val<=min((long long)10000000,(1ll<<k)-1);val++){
long long ans = 0;bool bad = 0;
for(int i = 0;i<k;i++){
ans/=2;
ans+=a[i];
if(val&(1ll<<i)){
if(ans<x){
bad = 1;break;
}
ans-=x;
}
}
if(!bad)all++;
}
return all;
}
컴파일 시 표준 에러 (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... |