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

633. 平方数之和

时间:2019-06-01 23:16:07      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:math   for   solution   imp   示例   存在   int   turn   bool   

633. 平方数之和

题目描述

给定一个非负整数 c ,你要判断是否存在两个整数 ab,使得 a2 + b2 = c。

示例1:

输入: 5
输出: True
解释: 1 * 1 + 2 * 2 = 5

示例2:

输入: 3
输出: False

贴出代码

class Solution {
    public boolean judgeSquareSum(int c) {
        int i = 0, j = (int)Math.sqrt(c);
        while(i <= j){
            int powSum = i * i + j * j;
            if (powSum == c){
                return true;
            }else if(powSum > c){
                j --;
            }else{
                i ++;
            }
        }
        return false;
    }
}
import . "math"

func judgeSquareSum(c int) bool {
    i := 0
    j := int(Sqrt(float64(c)))
    for i <= j {
        powSum := i * i + j * j
        if powSum == c{
            return true
        }else if powSum > c {
            j --
        }else{
            i ++
        }
    }
    return false
}

633. 平方数之和

标签:math   for   solution   imp   示例   存在   int   turn   bool   

原文地址:https://www.cnblogs.com/Tu9oh0st/p/10961262.html

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