3079 - 六位数

有一个六位数,第一位是1,如果把它移到个位,新的六位数正好是原数的三倍,求原来的六位数。

题目输入

题目输出

输入/输出样例

题目输入

no input needed

题目输出

142857

C++解答

#include<bits/stdc++.h>
using namespace std;
int main()
{
	cout<<142857;
    return 0;
}
时间限制 1 秒
内存限制 128 MB
讨论 统计
上一题 下一题