結果

問題 No.800 四平方定理
ユーザー hamrayhamray
提出日時 2019-03-17 22:10:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,131 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 72,436 KB
実行使用メモリ 37,944 KB
最終ジャッジ日時 2024-07-07 23:33:35
合計ジャッジ時間 14,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 15 ms
6,944 KB
testcase_08 AC 10 ms
6,940 KB
testcase_09 AC 14 ms
6,940 KB
testcase_10 AC 522 ms
20,368 KB
testcase_11 AC 518 ms
36,960 KB
testcase_12 AC 572 ms
37,944 KB
testcase_13 AC 414 ms
20,720 KB
testcase_14 AC 460 ms
37,320 KB
testcase_15 AC 576 ms
37,144 KB
testcase_16 AC 467 ms
36,416 KB
testcase_17 AC 459 ms
36,384 KB
testcase_18 AC 664 ms
36,408 KB
testcase_19 AC 646 ms
36,980 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 654 ms
37,196 KB
testcase_23 AC 1,131 ms
36,424 KB
testcase_24 AC 862 ms
36,960 KB
testcase_25 AC 1,107 ms
37,184 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 876 ms
37,000 KB
testcase_29 AC 996 ms
36,288 KB
testcase_30 AC 847 ms
36,852 KB
testcase_31 AC 778 ms
36,268 KB
testcase_32 AC 893 ms
36,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
#include <cstdlib>
#include <map>
#include <cstring>
#include <functional>
#include <tuple>
using namespace std;
using ll = long long;
vector<ll> v;
int main()
{
    ll N, D; cin >> N >> D;
    
    for(ll i=1; i<=N; ++i){
        for(ll j=1; j<=N; ++j){
            v.push_back(i*i+j*j);
        }
    }
    sort(v.begin(), v.end());
    
    ll ans=0;
    for(int i=1; i<=N; ++i){
        for(int j=1; j<=N; ++j){
            ans += upper_bound(v.begin(), v.end(), D+i*i-j*j) - lower_bound(v.begin(), v.end(), D+i*i-j*j);
        }
    }
    cout << ans << endl;
    
    
    return 0;
}
0