ZJU2965
Time Limit: 1 Second
Memory Limit: 32768 KB
In a party held by CocaCola company, several students stand in a circle and play a game.
One of them is selected as the first, and should say the number 1. Then they continue to count number from 1 one by one (clockwise). The game is interesting in that, once someone counts a number which is a multiple of 7 (e.g. 7, 14, 28, ...) or contains the digit '7' (e.g. 7, 17, 27, ...), he shall say "CocaCola"instead of the number itself.
For example, 4 students play this game. At some time, the first one says 25, then the second should say 26. The third should say "CocaCola"because 27 contains the digit '7'. The fourth one should say "CocaCola"too, because 28 is a multiple of 7. Then the first one says 29, and the game goes on. When someone makes a mistake, the game ends.
During a game, you may hear a consecutive of p "CocaCola"s. So what is the minimum number that can make this situation happen?
For example p = 2, that means there are a consecutive of 2 "CocaCola"s. This situation happens in 27-28 as stated above. 27 is then the minimum number to make this situation happen.
Input
Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 100) which is the number of test cases. And it will be followed by T consecutive test cases.
There is only one line for each case. The line contains only one integer p (1 <= p <= 99).
Output
Results should be directed to standard output. The output of each test case should be a single integer in one line, which is the minimum possible number for the first of the p "CocaCola"s stands for.
Sample Input
2
2
3
Sample Output
27
70
#include using namespace std;int answer[101];
int judge(int n){ if(n%7==0)return 1; while(n) { if(n%10==7)return 1; n/=10; } return 0;}
void Init(){ int top=1; int count=0; int num=-1; for(int i=1;top<=100;i++) { if(judge(i)) { count++; if(count==1)num=i; if(count==top) { answer[top]=num; top++; } } else count=0; }}int main(){ int n; cin>>n; Init(); int num; while(n--) { cin>>num; cout< } return 0;}
제목이 명확하지 않다. 첫 번째 연속 n번은 딱 n번을 가리키는 것이 아니라 뒤에 요구가 없기 때문에 사순환을 만들었다(사실은 많이 생각해도 틀리지 않는다. 모든 수가 작은 순서에서 큰 순서로 순서대로 나타날 수는 없다. 앞으로 조심해야 한다)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바에서 Long과 Integer가 범하기 쉬운 오류 요약그 중에서 매우 흔히 볼 수 있는 것은 두 개의 Long이나 Integer를 비교할 때 직접 사용하는 ==를 비교합니다.사실 이렇게 하는 것은 잘못된 것이다. Long과 Ineger는 모두 포장 유형이고 대상이기 때...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.