結果

問題 No.800 四平方定理
ユーザー dsaito11dsaito11
提出日時 2019-07-03 19:44:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,457 ms / 2,000 ms
コード長 873 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 90,716 KB
実行使用メモリ 82,856 KB
最終ジャッジ日時 2024-09-16 04:55:40
合計ジャッジ時間 19,791 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 17 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 632 ms
36,008 KB
testcase_11 AC 673 ms
45,816 KB
testcase_12 AC 729 ms
47,964 KB
testcase_13 AC 568 ms
35,692 KB
testcase_14 AC 622 ms
51,940 KB
testcase_15 AC 738 ms
51,472 KB
testcase_16 AC 624 ms
51,788 KB
testcase_17 AC 632 ms
51,784 KB
testcase_18 AC 825 ms
49,604 KB
testcase_19 AC 829 ms
49,612 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 819 ms
49,624 KB
testcase_23 AC 1,395 ms
60,664 KB
testcase_24 AC 1,150 ms
66,336 KB
testcase_25 AC 1,457 ms
60,684 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,182 ms
66,128 KB
testcase_29 AC 1,262 ms
79,904 KB
testcase_30 AC 1,163 ms
66,360 KB
testcase_31 AC 1,058 ms
62,960 KB
testcase_32 AC 1,156 ms
82,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>


#define INF 10e15
#define rep(i, a) for (int i = 0; i < (a); i++)
using namespace std;


int main() {
    long long int n, d;
    cin >> n >> d;

    vector<long long int> x, y;

    long long int i, j;
    for(i = 1; i <= n; i++){
        for(j = 1; j <= n; j++){
            x.push_back(i*i + j*j);
            
            if(i*i - j*j + d >= 0){
                y.push_back(i*i - j*j + d);
            }
        }
    }

    sort(y.begin(), y.end());

    long long int count = 0;
    for(i = 0; i < x.size(); i++){
        count += upper_bound(y.begin(), y.end(), x[i]) - lower_bound(y.begin(), y.end(), x[i]);
    }

    cout << count << endl;
}


0