如果发现广告等破坏行为,请尽量将条目恢复到较早的版本而不是把相应内容直接删除,谢谢合作。

URAL/1352

来自"NOCOW"

跳转到: 导航, 搜索

打表吧。。。

#include <iostream>
using namespace std;
const int x[]={0,2,3,5,7,13,17,19,31,61,89,
               107,127,521,607,1279,2203,2281,3217,4253,4423,
               9689,9941,11213,19937,21701,23209,44497,86243,110503,132049,
               216091,756839,859433,1257787,1398269,2976221,3021377,6972593};
int t,n;
int main()
{
    cin >> t;
    while (t--)
    {
        cin >> n;
        cout << x[n] << endl;
    }
    return 0;
}
//by zzy
个人工具