結果

問題 No.800 四平方定理
ユーザー ttttanttttan
提出日時 2019-03-17 21:58:32
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 771 bytes
コンパイル時間 1,578 ms
コンパイル使用メモリ 172,764 KB
実行使用メモリ 126,804 KB
最終ジャッジ日時 2024-07-07 22:40:38
合計ジャッジ時間 20,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 22 ms
6,376 KB
testcase_08 AC 29 ms
7,280 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 967 ms
62,136 KB
testcase_11 AC 920 ms
60,768 KB
testcase_12 AC 1,083 ms
69,020 KB
testcase_13 AC 658 ms
47,948 KB
testcase_14 AC 717 ms
52,464 KB
testcase_15 AC 1,064 ms
68,720 KB
testcase_16 AC 995 ms
52,596 KB
testcase_17 AC 934 ms
52,568 KB
testcase_18 AC 1,296 ms
81,004 KB
testcase_19 AC 1,310 ms
80,972 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1,334 ms
81,220 KB
testcase_23 TLE -
testcase_24 AC 1,500 ms
88,984 KB
testcase_25 TLE -
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,433 ms
88,172 KB
testcase_29 AC 1,849 ms
108,612 KB
testcase_30 AC 1,510 ms
88,244 KB
testcase_31 AC 1,363 ms
83,812 KB
testcase_32 AC 1,582 ms
100,612 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