标签:最大公约数 pad main name 简单的 简单 thml txt not
题目链接 : http://acm.hdu.edu.cn/showproblem.php?pid=6439
题解 : https://www.zybuluo.com/yang12138/note/1262592
相关定理 : 裴蜀定理
ax+by
http://www.cnblogs.com/xiuwenli/p/9534918.html
#include<bits/stdc++.h> using namespace std; const int maxn =1e5+5; typedef long long LL; int main() { #ifndef ONLINE_JUDGE freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); #endif int p; 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?‘\n‘:‘ ‘); } } for(int i=0;i<p;++i){ for(int j=0;j<p;++j){ printf("%d%c",(i*j%p),j==p-1?‘\n‘:‘ ‘); } } } return 0; }
费马大定理 (话说今年的题使费马出的嘛, 比较简单的签到题)
标签:最大公约数 pad main name 简单的 简单 thml txt not
原文地址:https://www.cnblogs.com/mrh-acmer/p/9544031.html