제출 #101757

#제출 시각아이디문제언어결과실행 시간메모리
101757rocketninja7Ice Hockey World Championship (CEOI15_bobek)C++14
20 / 100
69 ms384 KiB
#include <cstdio>

int main(){
    int N;
    long long int M;
    scanf("%d%lld", &N, &M);
    int A[N];
    for(int i=0;i<N;i++){
        scanf("%d", &A[i]);
    }
    long long int ans=0;
    for(int i=0;i<(1<<N);i++){
        long long int temp=0;
        for(int j=0;j<N;j++){
            if(i&(1<<j)){
                temp+=A[j];
                if(temp>M){
                    break;
                }
            }
        }
        if(temp<=M){
            ans++;
        }
    }
    printf("%lld", ans);
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

bobek.cpp: In function 'int main()':
bobek.cpp:6:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%lld", &N, &M);
     ~~~~~^~~~~~~~~~~~~~~~~~
bobek.cpp:9:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &A[i]);
         ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...