HDU - 6440(费马小定理)

Posted chenquanwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU - 6440(费马小定理)相关的知识,希望对你有一定的参考价值。

链接:HDU - 6440

题意:重新定义加法和乘法,使得 (m+n)^p = m^p + n^p 成立,p是素数。技术分享图片,且satisfied that there exists an integer q(0<q<p) to make the set {q^k|0<k<p,kZ} equal to {k|0<k<p,kZ}

题解:

技术分享图片

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

const double EPS = 1e-6;
const int INF = 0x3f3f3f3f;
const int mod = 1e9 + 7;
const int maxn = 1e5 + 10;
int p;

int main()
{
    int T;
    scanf("%d", &T);
    while(T--){
        scanf("%d", &p);
        for(int i = 0; i < p; i++){
            for(int j = 0; j < p; j++){
                printf("%d%c", (i + j) % p, j == p - 1 ? 
 :  );
            }
        }
        for(int i = 0; i < p; i++){
            for(int j = 0; j < p; j++){
                printf("%d%c", (i * j) % p, j == p - 1 ? 
 :  );
            }
        }
    }

    return 0;
}

 

以上是关于HDU - 6440(费马小定理)的主要内容,如果未能解决你的问题,请参考以下文章

hdu6440 Dream(费马小定理)

HDU6440(费马小定理)

HDU6440 Dream 2018CCPC网络赛-费马小定理

HDU6440 Dream(费马小定理+构造) -2018CCPC网络赛1003

hdu6440 Dream 2018CCPC网络赛C 费马小定理+构造

HDU - 6440 Dream 2018中国大学生程序设计竞赛 - 网络选拔赛