답안 #39762

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
39762 2018-01-18T09:29:56 Z krauch 비교 (balkan11_cmp) C++14
0 / 100
932 ms 82552 KB
#include "cmp.h"
 
#define forn(x, a, b) for (int x = a; x <= b; ++x)
#define for1(x, a, b) for (int x = a; x >= b; --x)
 
bool bit(int mask, int i) {
    return (mask >> i) & 1;
}
 
void remember(int n) {
    forn(i, 0, 11) {
        if (bit(n, i)) bit_set(i + 1);
    }
}
 
int compare(int b) {
    int cnt = 0;
    forn(i, 0, 11) {
        cnt += (bit_get(i + 1) << i);
    }
    if (cnt == b) return 0;
}

Compilation message

cmp.cpp: In function 'int compare(int)':
cmp.cpp:22:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 932 ms 82552 KB ZERO POINTS: For a=3040 and b=3318, correct answer is 1, got 0