結果

問題 No.800 四平方定理
ユーザー taki_gtaki_g
提出日時 2019-03-18 15:25:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 1,551 ms
コンパイル使用メモリ 168,664 KB
実行使用メモリ 159,636 KB
最終ジャッジ日時 2024-07-18 10:02:02
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
159,420 KB
testcase_01 AC 118 ms
159,588 KB
testcase_02 AC 118 ms
159,540 KB
testcase_03 AC 123 ms
159,444 KB
testcase_04 AC 118 ms
159,556 KB
testcase_05 AC 120 ms
159,424 KB
testcase_06 AC 118 ms
159,524 KB
testcase_07 AC 120 ms
159,432 KB
testcase_08 AC 119 ms
159,448 KB
testcase_09 AC 120 ms
159,428 KB
testcase_10 AC 151 ms
159,580 KB
testcase_11 AC 155 ms
159,444 KB
testcase_12 AC 158 ms
159,520 KB
testcase_13 AC 147 ms
159,636 KB
testcase_14 AC 148 ms
159,580 KB
testcase_15 AC 158 ms
159,636 KB
testcase_16 AC 148 ms
159,508 KB
testcase_17 AC 150 ms
159,452 KB
testcase_18 AC 161 ms
159,424 KB
testcase_19 AC 163 ms
159,540 KB
testcase_20 AC 118 ms
159,540 KB
testcase_21 AC 119 ms
159,572 KB
testcase_22 AC 164 ms
159,452 KB
testcase_23 AC 208 ms
159,420 KB
testcase_24 AC 192 ms
159,540 KB
testcase_25 AC 209 ms
159,424 KB
testcase_26 AC 119 ms
159,456 KB
testcase_27 AC 118 ms
159,528 KB
testcase_28 AC 195 ms
159,492 KB
testcase_29 AC 206 ms
159,444 KB
testcase_30 AC 195 ms
159,512 KB
testcase_31 AC 190 ms
159,636 KB
testcase_32 AC 198 ms
159,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0, i##_len=(n); i<i##_len; ++i)
#define REP(i,num,n) for(ll i=num, i##_len=(n); i<i##_len; ++i)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((ll)(x).size())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
#define MEMSET(v, h) memset((v), h, sizeof(v))
#define pb push_back
#define mp make_pair
#define y0 y3487465
#define y1 y8687969
#define j0 j1347829
#define j1 j234892
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
using namespace std;

int main(){
  ll N,D;
  cin >> N >> D;
  ll MAX = 1e7;
  ll ans = 0;
  vector<ll> count1(MAX);
  vector<ll> count2(MAX);
  REP(i,1,N+1)REP(j,1,N+1){
    ll temp1 = i*i+j*j;
    ll temp2 = i*i-j*j+D;
    count1[temp1]++;
    if(temp2<=0)continue;
    count2[temp2]++;
  }
  
  rep(i,MAX){
    ans += count1[i]*count2[i];
  }
  
  cout << ans << endl;



  return 0;
}
0