답안 #225709

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
225709 2020-04-21T11:20:40 Z maomao90 Popcount (COCI19_popcount) C++14
0 / 110
5 ms 384 KB
#include <cstdio>

using namespace std;

int N, K;

int main()
{
    scanf("%d%d", &N, &K);
    printf("%d\n", (N - 1) / 4 + 1);
    for (int i = 1; i <= N; i++)
    {
        if (i % 4 == 1)
        {
            if (i != 1) printf("A&((1<<%d)-1-(1<<%d)-1)\n", N + 1, i);
            printf("A=");
        }
        printf("(A&(1<<%d))>>%d+", i, i);
    }
    printf("A&((1<<%d)-1)\n", N / 4 * 4 + 1);
    return 0;
}

Compilation message

popcount.cpp: In function 'int main()':
popcount.cpp:9:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d", &N, &K);
     ~~~~~^~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB Wrong command format.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 256 KB Wrong command format.
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Wrong command format.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 384 KB Incorrect number of commands.
2 Halted 0 ms 0 KB -