結果

問題 No.800 四平方定理
ユーザー やむなくやむなく
提出日時 2019-03-17 22:15:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,969 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 1,379 ms
コンパイル使用メモリ 173,072 KB
実行使用メモリ 57,216 KB
最終ジャッジ日時 2024-07-07 23:49:08
合計ジャッジ時間 21,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 12 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 747 ms
30,464 KB
testcase_11 AC 765 ms
33,792 KB
testcase_12 AC 873 ms
33,280 KB
testcase_13 AC 656 ms
31,744 KB
testcase_14 AC 702 ms
33,920 KB
testcase_15 AC 835 ms
33,536 KB
testcase_16 AC 710 ms
34,048 KB
testcase_17 AC 714 ms
34,176 KB
testcase_18 AC 993 ms
34,048 KB
testcase_19 AC 968 ms
34,048 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 993 ms
34,176 KB
testcase_23 AC 1,969 ms
56,960 KB
testcase_24 AC 1,535 ms
57,216 KB
testcase_25 AC 1,928 ms
56,704 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,543 ms
56,832 KB
testcase_29 AC 1,728 ms
57,088 KB
testcase_30 AC 1,527 ms
56,832 KB
testcase_31 AC 1,376 ms
53,248 KB
testcase_32 AC 1,629 ms
57,088 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;
  map<int,int> mp;
  for(int i=1;i<=n;i++){
    for(int j=i+1;j<=n;j++){
      mp[i*i+j*j]+=2;
    }
  }
  for(int i=1;i<=n;i++) mp[2*i*i]++;
  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