P5436 XR-2缘分
Posted xht37
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P5436 XR-2缘分相关的知识,希望对你有一定的参考价值。
题目大意
求两个不超过 \(n\) 的正整数的最小公倍数的最大值。
前置知识
- 最小公倍数
题解
略...
注意特判 \(n = 1\)。
代码
#include <bits/stdc++.h>
using namespace std;
int main()
int T;
cin >> T;
while (T--)
int n;
cin >> n;
if (n == 1)
puts("1");
continue;
cout << 1ll * n * (n - 1) << endl;
return 0;
以上是关于P5436 XR-2缘分的主要内容,如果未能解决你的问题,请参考以下文章