nefu 702 The minimum square sum

简介:
#include <iostream>

using namespace std;

int main()
{
    long long  m;
    while(cin>>m)
    {
        if(m%4==1||m==2)
            cout<<m<<endl;
        else
            cout<<2*m*m<<endl;
    }
    return 0;
}
目录
相关文章
|
6月前
|
Linux Windows
【已解决】ValueError: num_samples should be a positive integer value, but got num_samples=0
【已解决】ValueError: num_samples should be a positive integer value, but got num_samples=0
|
人工智能 算法
1305:Maximum sum
1305:Maximum sum
LeetCode 64. Minimum Path Sum
给定m x n网格填充非负数,找到从左上到右下的路径,这最小化了沿其路径的所有数字的总和。 注意:您只能在任何时间点向下或向右移动。
103 0
LeetCode 64. Minimum Path Sum
|
人工智能
Constant Palindrome Sum
Constant Palindrome Sum
|
Python
“cosine_distance“ “KMeansClusterer“ is not defined
“cosine_distance“ “KMeansClusterer“ is not defined
115 0
|
人工智能 算法
1305 Pairwise Sum and Divide
1305 Pairwise Sum and Divide 题目来源: HackerRank 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 有这样一段程序,fun会对整数数组A进行求值,其中Floor表示向下取整:   fun(A)     sum = 0     for i = 1 to A.
837 0
|
人工智能
数学 - WHU 1603 - Minimum Sum
Problem's Link mean 给定n个整数,从中选出m个整数出来,使得这m个整数两两求(差的绝对值),并保证(差的绝对值)之和最小。 analyse 首先,要使得m个数(差的绝对值)之和最小,易知这m个数应该是连续的,所以先排序。
668 0