POJ 2247 Humble Numble (내 수제의 길 - 축수 2, 3, 5, 7)
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 7857
Accepted: 3715
Description
A number whose only prime factors are 2,3,5 or 7 is called a humble number. The sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, ... shows the first 20 humble numbers.
Write a program to find and print the nth element in this sequence.
Input
The input consists of one or more test cases. Each test case consists of one integer n with 1 <= n <= 5842. Input is terminated by a value of zero (0) for n.
Output
For each test case, print one line saying "The nth humble number is number.". Depending on the value of n, the correct suffix "st", "nd", "rd", or "th"for the ordinal number nth has to be used like it is shown in the sample output.
Sample Input
1
2
3
4
11
12
13
21
22
23
100
1000
5842
0
Sample Output
The 1st humble number is 1.
The 2nd humble number is 2.
The 3rd humble number is 3.
The 4th humble number is 4.
The 11th humble number is 12.
The 12th humble number is 14.
The 13th humble number is 15.
The 21st humble number is 28.
The 22nd humble number is 30.
The 23rd humble number is 32.
The 100th humble number is 450.
The 1000th humble number is 385875.
The 5842nd humble number is 2000000000.
Source
Ulm Local 1996
제목과 문제 풀이 사고방식은 지난 POJ1338 Ugly Numbers와 똑같습니다.
POJ 1338 Ugly Numbers
코드(1AC):
#include <cstdio>
#include <cstdlib>
#include <cstring>
int at[4];
int factor[4] = {2, 3, 5, 7};
int ugly[6000];
int main(void){
int i, j;
int minid;
int top;
int id;
at[0] = at[1] = at[2] = at[3] = 0;
ugly[0] = 1;
for (top = 1; top < 5845; top++){
minid = 0;
for (i = 1; i < 4; i++){
if (ugly[at[minid]] * factor[minid] >= ugly[at[i]] * factor[i]){
minid = i;
}
}
ugly[top] = ugly[at[minid]] * factor[minid];
for (i = 0; i < 4; i++){
if (ugly[top] == ugly[at[i]] * factor[i]){
at[i] ++;
}
}
}
while (scanf("%d", &id), id != 0){
printf("The %d", id);
if(id % 10 == 1 && id % 100 != 11)
printf("st");
else if(id % 10 == 2 && id % 100 != 12)
printf("nd");
else if(id % 10 == 3 && id % 100 != 13)
printf("rd");
else
printf("th");
printf(" humble number is %d.
", ugly[id - 1] );
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
cocos2d Lua 학습(一)ios에서 루아 함수 호출 및 전참 방법 lua 코드: 출력 결과: lua 호출 C++ 방법: add 함수: lua 코드: 출력 결과: 함수를 호출합니다. 함수를 호출하려면 다음 협의를 따르십시오. 우선, 호출할 함...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.