mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
46f6aa3fc4
2200-2299
23 lines
504 B
C++
23 lines
504 B
C++
#include <stdio.h>
|
|
#include <math.h>
|
|
double LogAN(double a, double N)
|
|
{
|
|
return log(N) / log(a);
|
|
}
|
|
int main()
|
|
{
|
|
int N = 0;
|
|
while (scanf("%d", &N) != EOF)
|
|
{
|
|
double fBitNum = LogAN(2, N+3);
|
|
int nBitNum = ceil(fBitNum);
|
|
unsigned int nBitIP = ~((1<<nBitNum) - 1);
|
|
printf("%u.%u.%u.%u\n",
|
|
(nBitIP >> 24),
|
|
((nBitIP >> 16) & 0xFF),
|
|
((nBitIP >> 8) & 0xFF),
|
|
nBitIP & 0xFF);
|
|
}
|
|
return 0;
|
|
}
|