結果

問題 No.800 四平方定理
ユーザー beetbeet
提出日時 2019-03-18 11:33:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 805 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 209,776 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-07-18 03:30:06
合計ジャッジ時間 12,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 8 ms
5,760 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 8 ms
5,632 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 314 ms
52,736 KB
testcase_11 AC 303 ms
60,160 KB
testcase_12 AC 378 ms
59,928 KB
testcase_13 AC 316 ms
56,276 KB
testcase_14 AC 373 ms
60,288 KB
testcase_15 AC 326 ms
60,152 KB
testcase_16 AC 327 ms
60,544 KB
testcase_17 AC 266 ms
60,472 KB
testcase_18 AC 297 ms
60,416 KB
testcase_19 AC 265 ms
60,544 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 304 ms
60,652 KB
testcase_23 AC 709 ms
102,912 KB
testcase_24 AC 720 ms
102,784 KB
testcase_25 AC 745 ms
102,656 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 653 ms
102,656 KB
testcase_29 AC 752 ms
102,912 KB
testcase_30 AC 699 ms
102,656 KB
testcase_31 AC 724 ms
95,360 KB
testcase_32 AC 805 ms
102,772 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;
  cnt.reserve(2*n*n);
  
  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&&cnt.count(v)) ans+=cnt[v];
    }
  }
  cout<<ans<<endl;
  return 0;
}
0