結果

問題 No.800 四平方定理
ユーザー beetbeet
提出日時 2019-03-18 11:30:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,268 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 3,569 ms
コンパイル使用メモリ 228,668 KB
実行使用メモリ 167,176 KB
最終ジャッジ日時 2024-07-18 03:26:58
合計ジャッジ時間 18,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 10 ms
5,972 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 9 ms
5,836 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 9 ms
5,972 KB
testcase_06 AC 11 ms
5,712 KB
testcase_07 AC 11 ms
6,092 KB
testcase_08 AC 15 ms
8,396 KB
testcase_09 AC 8 ms
5,840 KB
testcase_10 AC 460 ms
85,096 KB
testcase_11 AC 515 ms
85,180 KB
testcase_12 AC 536 ms
85,200 KB
testcase_13 AC 370 ms
49,612 KB
testcase_14 AC 425 ms
85,116 KB
testcase_15 AC 505 ms
85,196 KB
testcase_16 AC 457 ms
85,120 KB
testcase_17 AC 454 ms
85,124 KB
testcase_18 AC 527 ms
85,196 KB
testcase_19 AC 540 ms
85,200 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 543 ms
85,176 KB
testcase_23 AC 1,268 ms
167,176 KB
testcase_24 AC 974 ms
98,896 KB
testcase_25 AC 1,143 ms
167,016 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,037 ms
98,772 KB
testcase_29 AC 1,253 ms
167,008 KB
testcase_30 AC 979 ms
96,084 KB
testcase_31 AC 851 ms
94,160 KB
testcase_32 AC 1,026 ms
96,972 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;
      if(v>0) ans+=cnt[v];
    }
  }
  cout<<ans<<endl;
  return 0;
}
0