結果

問題 No.800 四平方定理
ユーザー やむなくやむなく
提出日時 2019-03-17 22:18:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,803 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 1,399 ms
コンパイル使用メモリ 178,640 KB
実行使用メモリ 72,684 KB
最終ジャッジ日時 2024-07-07 23:59:28
合計ジャッジ時間 23,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 19 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 750 ms
38,044 KB
testcase_11 AC 773 ms
42,240 KB
testcase_12 AC 875 ms
41,600 KB
testcase_13 AC 658 ms
39,680 KB
testcase_14 AC 702 ms
42,288 KB
testcase_15 AC 878 ms
42,112 KB
testcase_16 AC 731 ms
42,752 KB
testcase_17 AC 738 ms
42,752 KB
testcase_18 AC 1,032 ms
42,624 KB
testcase_19 AC 1,002 ms
42,624 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,035 ms
42,688 KB
testcase_23 AC 1,803 ms
72,404 KB
testcase_24 AC 1,382 ms
72,684 KB
testcase_25 AC 1,800 ms
72,196 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,402 ms
72,084 KB
testcase_29 AC 1,648 ms
72,428 KB
testcase_30 AC 1,453 ms
72,308 KB
testcase_31 AC 1,325 ms
67,420 KB
testcase_32 AC 1,439 ms
72,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define all(x) (x).begin(),(x).end()
#define SP <<" "<<
#define MOD 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000

typedef long long LL;
typedef long double LD;

int main(){
  int n,d;
  cin >> n >> d;
  vector<int> p(n*n);
  for(int i=1;i<=n;i++){
    for(int j=1;j<=n;j++){
      p[(i-1)*n+j-1]=i*i+j*j;
    }
  }
  sort(all(p));
  map<int,int> mp;
  int count=1;
  for(int i=1;i<n*n;i++){
    if(p[i-1]==p[i]){
      count++;
    }else{
      mp[p[i-1]]=count;
      count=1;
    }
  }
  mp[p[n*n-1]]=count;
  LL ans=0;
  for(int i=1;i<=n;i++){
    for(int j=1;j<=n;j++){
      auto itr=mp.find(i*i-j*j+d);
      if(itr!=mp.end()) ans+=itr->second;
    }
  }
  cout << ans << endl;
  return 0;
}
0