結果

問題 No.800 四平方定理
ユーザー shop_oneshop_one
提出日時 2020-04-15 15:50:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 93,636 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-10-01 18:47:18
合計ジャッジ時間 4,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
72,176 KB
testcase_01 AC 30 ms
72,172 KB
testcase_02 AC 25 ms
72,192 KB
testcase_03 AC 23 ms
72,020 KB
testcase_04 AC 23 ms
72,192 KB
testcase_05 AC 27 ms
72,096 KB
testcase_06 AC 23 ms
72,192 KB
testcase_07 AC 24 ms
72,192 KB
testcase_08 AC 36 ms
72,104 KB
testcase_09 AC 36 ms
72,172 KB
testcase_10 AC 67 ms
72,112 KB
testcase_11 AC 60 ms
72,052 KB
testcase_12 AC 69 ms
72,100 KB
testcase_13 AC 64 ms
72,144 KB
testcase_14 AC 66 ms
72,076 KB
testcase_15 AC 63 ms
72,060 KB
testcase_16 AC 60 ms
72,132 KB
testcase_17 AC 67 ms
72,192 KB
testcase_18 AC 62 ms
72,192 KB
testcase_19 AC 64 ms
72,172 KB
testcase_20 AC 23 ms
72,192 KB
testcase_21 AC 22 ms
72,132 KB
testcase_22 AC 77 ms
72,052 KB
testcase_23 AC 105 ms
72,112 KB
testcase_24 AC 100 ms
72,320 KB
testcase_25 AC 118 ms
72,192 KB
testcase_26 AC 20 ms
72,192 KB
testcase_27 AC 20 ms
72,116 KB
testcase_28 AC 108 ms
72,192 KB
testcase_29 AC 106 ms
72,192 KB
testcase_30 AC 111 ms
72,100 KB
testcase_31 AC 94 ms
72,192 KB
testcase_32 AC 98 ms
72,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<map>
#include<set>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using TP = tuple<ll,ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << setprecision(18);
}
#define MAX 2*(2100*2100)
vector<ll> mv(MAX,0);
signed main(){
  init_io();
  ll n,d,ans=0;
  cin >> n >> d;
  for(ll i=1;i<=n;i++){
    for(ll j=1;j<=n;j++){
      mv[i*i+j*j]++;
    }
  }
  for(ll w=1;w<=n;w++){
    for(ll z=1;z<=n;z++){
      ll x = d + w*w - z*z;
      if(x>=0&&x<MAX){
        ans += mv[x];
      }
    }
  }
  cout << ans << endl;
}
0