結果

問題 No.800 四平方定理
ユーザー monnumonnu
提出日時 2020-09-29 22:19:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 435 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 172,752 KB
実行使用メモリ 127,488 KB
最終ジャッジ日時 2024-07-04 14:30:39
合計ジャッジ時間 24,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
10,752 KB
testcase_01 AC 22 ms
6,400 KB
testcase_02 AC 16 ms
5,376 KB
testcase_03 AC 18 ms
5,760 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 18 ms
5,632 KB
testcase_06 AC 28 ms
7,040 KB
testcase_07 AC 20 ms
6,016 KB
testcase_08 AC 25 ms
7,168 KB
testcase_09 AC 22 ms
6,528 KB
testcase_10 AC 1,477 ms
70,016 KB
testcase_11 AC 1,691 ms
81,920 KB
testcase_12 AC 1,709 ms
79,104 KB
testcase_13 AC 1,472 ms
73,088 KB
testcase_14 AC 1,787 ms
82,816 KB
testcase_15 AC 1,694 ms
78,720 KB
testcase_16 AC 1,766 ms
83,712 KB
testcase_17 AC 1,687 ms
80,896 KB
testcase_18 AC 1,889 ms
81,280 KB
testcase_19 AC 1,933 ms
82,304 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,836 ms
78,208 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define INF 1000000000000000000
#define MOD 1000000007
using ll=long long;
using Graph=vector<vector<int>>;

int main(){
  int N,D;
  cin>>N>>D;

  map<int,int> m;
  for(int i=1;i<=N;i++){
    m[i*i*2]++;
    for(int j=i+1;j<=N;j++){
      m[i*i+j*j]+=2;
    }
  }

  int ans=0;
  for(int i=1;i<=N;i++){
    for(int j=1;j<=N;j++){
      ans+=m[i*i-j*j+D];
    }
  }

  cout<<ans<<endl;

}
0