結果

問題 No.800 四平方定理
ユーザー hamrayhamray
提出日時 2019-03-17 22:15:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,206 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 72,612 KB
実行使用メモリ 36,068 KB
最終ジャッジ日時 2024-07-07 23:50:11
合計ジャッジ時間 15,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 528 ms
19,660 KB
testcase_11 AC 534 ms
35,848 KB
testcase_12 AC 601 ms
36,060 KB
testcase_13 AC 412 ms
19,680 KB
testcase_14 AC 460 ms
36,068 KB
testcase_15 AC 600 ms
35,936 KB
testcase_16 AC 455 ms
35,932 KB
testcase_17 AC 470 ms
35,936 KB
testcase_18 AC 707 ms
35,968 KB
testcase_19 AC 705 ms
35,936 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 713 ms
35,936 KB
testcase_23 AC 1,206 ms
36,064 KB
testcase_24 AC 876 ms
35,936 KB
testcase_25 AC 1,180 ms
36,064 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 869 ms
35,940 KB
testcase_29 AC 1,045 ms
36,060 KB
testcase_30 AC 889 ms
35,936 KB
testcase_31 AC 798 ms
36,060 KB
testcase_32 AC 904 ms
36,060 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()
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    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(ll i=1; i<=N; ++i){
        for(ll j=1; j<=N; ++j){
            if(D+i*i-j*j<0) break;
            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