20201207大一集训题之y题思维题之数组+素数

24 篇文章 0 订阅
24 篇文章 0 订阅

Sasha likes investigating different math objects, for example, magic squares. But Sasha understands that magic squares have already been studied by hundreds of people, so he sees no sense of studying them further. Instead, he invented his own type of square — a prime square.

A square of size n×n is called prime if the following three conditions are held simultaneously:

all numbers on the square are non-negative integers not exceeding 105;
there are no prime numbers in the square;
sums of integers in each row and each column are prime numbers.
Sasha has an integer n. He asks you to find any prime square of size n×n. Sasha is absolutely sure such squares exist, so just help him!

Input
The first line contains a single integer t (1≤t≤10) — the number of test cases.

Each of the next t lines contains a single integer n (2≤n≤100) — the required size of a square.

Output
For each test case print n lines, each containing n integers — the prime square you built. If there are multiple answers, print any.

Example
Input
2
4
2
Output
4 6 8 1
4 9 9 9
4 10 10 65
1 4 4 4
1 1
1 1
思维:
要求时每行的和都要时素数,就初始化数组都为1。(1正好不为素数)
然后只要改变对角线上的值就欧克了。
代码

#include<bits/stdc++.h>
#include<cstdio>
#include<math.h>
#include<string.h>
using namespace std;

int a[1005][1005];
bool flag;

bool prime(int a)
{
	if(a==2||a==3) return true;
	else if(a<=1||a%2==0) return false;
	else if(a>3){
		for(int i=3;i*i<=a;i+=2){
			if(a%i==0) return false; 
		}
		return true;
	} 
}

int main()
{
	int t;
	scanf("%d",&t);
	while(t--){
		int n,sum;
		scanf("%d",&n);
		for(int i=1;i<=n;i++){
			for(int j=1;j<=n;j++){
				a[i][j]=1;
			}
		}
		flag=0;
		while(!flag){
			sum=a[1][1]+n-1;
			if(prime(sum)&&!prime(a[1][1])) flag=1;
			else{
				for(int i=1;i<=n;i++){
					a[i][i]++;
				}	 
			}
		}
		for(int i=1;i<=n;i++){
			for(int j=1;j<=n;j++){
				if(j==1) printf("%d",a[i][j]);
				else printf("% d",a[i][j]);
			}putchar('\n');
		}
	}
	
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值