2024/05/30

完成题目

阅读全文 »

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

阅读全文 »

A

题意:输入两个整数,分别输出其最小值与最大值。

题解:使用 min()max()

1
2
3
4
5
6
7
8
9
10
11
signed main()
{
int T;
cin>>T;
while(T--)
{
int x,y;
cin>>x>>y;
cout<<min(x,y)<<" "<<max(x,y)<<endl;
}
}
阅读全文 »

TEST

this is a test.

介绍

中国剩余定理 (Chinese remainder theorem, CRT),简单而言,给定一个未知数 xxnn 个关于 xx线性同余方程 (Congruence Equation) 组成的线性同余方程组 (Congruence Equation System),其中任意两模数互质,求满足该方程组的最小非负整数解

阅读全文 »

此篇讲解为一般现在时讲解,如无特殊说明,条件都是在一般现在时下,故讲解中的很多时态知识都可能只在一般现在时下适用(当然举一反三也是当然可以的)

阅读全文 »
0%