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,k∈Z} equal to {k|0<k<p,k∈Z}。
题解:
#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 2018CCPC网络赛-费马小定理
HDU6440 Dream(费马小定理+构造) -2018CCPC网络赛1003