码迷,mamicode.com
首页 > 其他好文 > 详细

P5436 【XR-2】缘分

时间:2019-06-29 22:24:10      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:turn   cin   题目   mat   line   cout   continue   puts   知识   

题目大意

求两个不超过 \(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】缘分

标签:turn   cin   题目   mat   line   cout   continue   puts   知识   

原文地址:https://www.cnblogs.com/xht37/p/11107868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!