結果

問題 No.800 四平方定理
ユーザー beetbeet
提出日時 2019-03-17 22:51:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 207,980 KB
実行使用メモリ 164,776 KB
最終ジャッジ日時 2024-07-08 01:19:35
合計ジャッジ時間 29,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 12 ms
5,888 KB
testcase_02 AC 10 ms
5,632 KB
testcase_03 AC 12 ms
5,644 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 11 ms
5,504 KB
testcase_06 AC 16 ms
6,280 KB
testcase_07 AC 13 ms
5,768 KB
testcase_08 AC 17 ms
6,408 KB
testcase_09 AC 14 ms
6,020 KB
testcase_10 AC 703 ms
58,872 KB
testcase_11 AC 947 ms
82,700 KB
testcase_12 AC 881 ms
82,680 KB
testcase_13 AC 891 ms
82,776 KB
testcase_14 AC 984 ms
82,680 KB
testcase_15 AC 942 ms
82,676 KB
testcase_16 AC 968 ms
82,724 KB
testcase_17 AC 939 ms
82,772 KB
testcase_18 AC 898 ms
82,684 KB
testcase_19 AC 866 ms
82,680 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 877 ms
82,668 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,801 ms
112,672 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,810 ms
117,156 KB
testcase_31 AC 1,695 ms
113,192 KB
testcase_32 AC 1,855 ms
116,520 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;}


//INSERT ABOVE HERE
signed main(){
  Int n,d;
  cin>>n>>d;
  unordered_map<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