zoukankan      html  css  js  c++  java
  • hdu 4627 The Unsolvable Problem

    A水题,渐渐发现没有快感了。。

    求最小公倍数。

     1 #include<stdio.h>
     2 #define LL __int64
     3 int main()
     4 {
     5     int T;
     6     LL n,s;
     7     scanf("%d",&T);
     8     while(T--)
     9     {
    10         scanf("%I64d",&n);
    11         if(n==2){
    12             printf("1
    ");
    13             continue;
    14         }
    15         if(n%2){
    16             printf("%I64d
    ",(n/2)*(n/2+1));
    17             continue ;
    18         }else {
    19             s=n/2;
    20             if(s%2){
    21                 printf("%I64d
    ",(s-2)*(s+2));
    22                 continue;
    23             }else {
    24                 printf("%I64d
    ",(s-1)*(s+1));
    25                 continue;
    26             }
    27         }
    28     }
    29     return 0;
    30 }
    View Code
  • 相关阅读:
    Swift 构造与析构
    Swift 协议
    Swift 扩展
    Swift 多态
    Swift 继承
    Swift 封装
    Swift 方法
    Swift 属性
    Swift 对象
    Swift 类
  • 原文地址:https://www.cnblogs.com/zstu-abc/p/3225757.html
Copyright © 2011-2022 走看看