結果

問題 No.800 四平方定理
ユーザー beetbeet
提出日時 2019-03-17 21:26:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 3,814 ms
コンパイル使用メモリ 229,452 KB
実行使用メモリ 167,244 KB
最終ジャッジ日時 2024-07-07 20:23:34
合計ジャッジ時間 21,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 14 ms
8,400 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 15 ms
8,528 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 553 ms
85,084 KB
testcase_11 AC 626 ms
88,272 KB
testcase_12 AC 619 ms
86,484 KB
testcase_13 AC 575 ms
85,088 KB
testcase_14 AC 626 ms
88,916 KB
testcase_15 AC 619 ms
86,224 KB
testcase_16 AC 637 ms
89,552 KB
testcase_17 AC 646 ms
87,636 KB
testcase_18 AC 628 ms
88,016 KB
testcase_19 AC 628 ms
88,656 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 642 ms
85,840 KB
testcase_23 AC 1,444 ms
167,048 KB
testcase_24 AC 1,538 ms
167,244 KB
testcase_25 AC 1,486 ms
167,012 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,461 ms
167,004 KB
testcase_29 AC 1,455 ms
167,036 KB
testcase_30 AC 1,442 ms
167,068 KB
testcase_31 AC 1,355 ms
167,096 KB
testcase_32 AC 1,457 ms
167,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<typename T,typename U> 
using gmap = cc_hash_table<T, U, hash<T> >;

//INSERT ABOVE HERE

signed main(){
  int n,d;
  cin>>n>>d;
  gmap<int, int> cnt;
  for(int i=1;i<=n;i++)
    for(int j=1;j<=n;j++)
      cnt[i*i+j*j]++;
  
  int ans=0;
  for(int i=1;i<=n;i++){
    for(int j=1;j<=n;j++){
      int v=i*i-j*j+d;
      ans+=cnt[v];
    }
  }
  cout<<ans<<endl;
  return 0;
}
0