Submission #41534

#TimeUsernameProblemLanguageResultExecution timeMemory
41534ljk0411jgcmp (balkan11_cmp)C++14
0 / 100
969 ms82552 KiB
#include "cmp.h" void remember(int n) { int num = n; for (int i = 0; i < 13; i++) { if ((num & (1 << i)) != 0) { bit_set(i + 1); } } } int compare(int b) { int a; for (int i = 1; i < 14; i++) { if (bit_get(i) == 1) { a = a | (1 << (i - 1)); } } if (a > b) { return -1; } else if (a == b) { return 0; } else { return 1; } }

Compilation message (stderr)

cmp.cpp: In function 'int compare(int)':
cmp.cpp:20:6: warning: 'a' may be used uninitialized in this function [-Wmaybe-uninitialized]
    a = a | (1 << (i - 1));
    ~~^~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...