A. Bad Ugly Numbers 1000 / 构造题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Bad Ugly Numbers 1000 / 构造题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1326/A
构造一个n位的数,不能被其单位上的每一个数整除。
如果n==1一定无解。
构造方法:
- 233…
- 499…
- 677…
等…任选一种即可
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n; cin>>n;
if(n==1) puts("-1");
else
{
cout<<2;
for(int i=1;i<=n-1;i++) cout<<3;
cout<<endl;
}
}
return 0;
}
以上是关于A. Bad Ugly Numbers 1000 / 构造题的主要内容,如果未能解决你的问题,请参考以下文章