Pro.ID10243 TitleThree powers Title链接http://10.20.2.8/oj/exercise/problem?problem_id=10243 AC0 Submit0 Ratio- 时间&空间限制描述Consider the set of all non-negative integer powers of 3. 输入Each line of input contains a number n, which is a positive integer with no more than 19 digits. The last line of input contains 0 and it should not be processed. 输出Description Consider the set of all non-negative integer powers of 3. Input Each line of input contains a number n, which is a positive integer with no more than 19 digits. The last line of input contains 0 and it should not be processed. Output For each line of input, output a single line displaying the n-th set as described above, in the format used in the sample output. Sample Input 1
7
14
783
1125900981634049
0 Sample Output { }
{ 3, 9 }
{ 1, 9, 27 }
{ 3, 9, 27, 6561, 19683 }
{ 59049, 3486784401, 205891132094649, 717897987691852588770249 } Source 样例输入1
7
14
783
1125900981634049
0 样例输出{ }
{ 3, 9 }
{ 1, 9, 27 }
{ 3, 9, 27, 6561, 19683 }
{ 59049, 3486784401, 205891132094649, 717897987691852588770249 } 作者 |