結果

問題 No.1593 Perfect Distance
ユーザー rieaaddlreiuu
提出日時 2022-10-24 19:07:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 435 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 165,584 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-07-02 22:11:07
合計ジャッジ時間 11,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other AC * 12 TLE * 3 -- * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
/*
N^2-x^2=y^2


*/

bool is_square(long x){
    for(long i=0;i*i<=x;i++){
        if(i*i==x){
            return true;
        }
    }
    return false;
}

int main(){
    int N;
    int count = 0;
    scanf("%d",&N);
    for(int i=1;i<N;i++){
        long x = (long)N * (long)N - (long)i * (long)i;
        if(is_square(x)){
            count++;
        }
    }
    printf("%d",count);
}
0