zoj2405 ------------Specialized Four-Digit Numbers
For example, the number 2991 has the sum of (decimal) digits 2+9+9+1 = 21. Since 2991 = 1*1728 + 8*144 + 9*12 + 3, its duodecimal representation is 189312, and these digits also sum up to 21. But in hexadecimal 2991 is BAF16, and 11+10+15 = 36, so 2991 should be rejected by your program.
The next number (2992), however, has digits that sum to 22 in all three representations (including BB016), so 2992 should be on the listed output. (We don't want decimal numbers with fewer than four digits - excluding leading zeroes - so that 2992 is the first correct answer.)
Input
There is no input for this problem.
Output
Your output is to be 2992 and all larger four-digit numbers that satisfy the requirements (in strictly increasing order), each on a separate line with no leading or trailing blanks, ending with a new-line character. There are to be no blank lines in the output. The first few lines of the output are shown below.
Sample Input
There is no input for this problem.
Sample Output
2992 2993 2994 2995 2996 2997 2998 2999
코드:
#include <iostream>
using namespace std;
int n[4],n1[4],n2[4];
int num;
void To12()
{
n1[0]=num/1728;
n1[1]=(num%1728)/144;
n1[2]=((num%1728)%144)/12;
n1[3]=((num%1728)%144)%12;
}
void To16()
{
n2[0]=num/4096;
n2[1]=(num%4096)/256;
n2[2]=((num%4096)%256)/16;
n2[3]=((num%4096)%256)%16;
}
int main()
{
num=2992;
for(;num<=9999;num++)
{
int sum=0,sum1=0,sum2=0;
n[0]=num/1000;
n[1]=(num%1000)/100;
n[2]=((num%1000)%100)/10;
n[3]=((num%1000)%100)%10;
sum=n[0]+n[1]+n[2]+n[3];
for(int i=0;i<4;i++)
n1[i]=n2[i]=n[i];
To12();
sum1=n1[0]+n1[1]+n1[2]+n1[3];
To16();
sum2=n2[0]+n2[1]+n2[2]+n2[3];
if(sum1==sum2&&sum1==sum)
cout<<num<<endl;
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Secrets of equals() - Part 2A Point object should only compare equal to a ColoredPoint object if the color field contains a default value. Two objec...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.