結果

問題 No.1593 Perfect Distance
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2022-10-24 19:04:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 1,692 ms
コンパイル使用メモリ 166,324 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-02 22:08:22
合計ジャッジ時間 12,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 47 ms
6,940 KB
testcase_10 AC 468 ms
6,944 KB
testcase_11 AC 1,140 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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++){
        if(is_square((long)(N*N-i*i))){
            count++;
        }
    }
    printf("%d",count);
}
0