結果

問題 No.800 四平方定理
ユーザー ttttanttttan
提出日時 2019-03-17 22:02:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 771 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 216,604 KB
実行使用メモリ 121,864 KB
最終ジャッジ日時 2024-07-07 22:56:07
合計ジャッジ時間 28,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 17 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 14 ms
6,944 KB
testcase_06 AC 17 ms
6,944 KB
testcase_07 AC 23 ms
6,940 KB
testcase_08 AC 30 ms
7,412 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 949 ms
62,376 KB
testcase_11 AC 908 ms
62,764 KB
testcase_12 AC 1,088 ms
69,804 KB
testcase_13 AC 704 ms
48,084 KB
testcase_14 AC 754 ms
54,120 KB
testcase_15 AC 1,087 ms
68,924 KB
testcase_16 AC 763 ms
53,564 KB
testcase_17 AC 764 ms
53,908 KB
testcase_18 AC 1,300 ms
81,388 KB
testcase_19 AC 1,333 ms
81,408 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1,349 ms
82,184 KB
testcase_23 TLE -
testcase_24 AC 1,483 ms
88,552 KB
testcase_25 TLE -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1,504 ms
88,300 KB
testcase_29 AC 1,898 ms
107,340 KB
testcase_30 AC 1,483 ms
88,416 KB
testcase_31 AC 1,364 ms
82,444 KB
testcase_32 AC 1,711 ms
99,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n,d;cin>>n>>d;
    map<ll,ll> mp;
    vector<ll> v;
    for(ll i=1;i<=n;i++){
        for(ll j=1;j<=n;j++){
          if(i*i+d-j*j>0){
            mp[i*i+d-j*j]++;
            v.push_back(i*i+d-j*j);
          }
        }
    }
  sort(v.begin(),v.end());
  v.erase(unique(v.begin(),v.end()),v.end());
  ll r=v.size();
  ll cnt[r];
  for(ll i=0;i<r;i++){
    cnt[i]=mp[v[i]];
  }
    ll ans=0;
    for(ll i=1;i<n;i++){
        for(ll j=i+1;j<=n;j++){
          ll y=lower_bound(v.begin(),v.end(),i*i+j*j)-v.begin();
          if(v[y]==i*i+j*j){
            ans+=cnt[y];
          }
        }
    }
    ll anss=0;
  for(ll i=1;i<=n;i++)anss+=mp[i*i+i*i];
  
    cout<<ans*2+anss<<endl;
}
0