結果

問題 No.800 四平方定理
ユーザー monnumonnu
提出日時 2020-09-29 22:23:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 1,528 ms
コンパイル使用メモリ 167,184 KB
実行使用メモリ 34,548 KB
最終ジャッジ日時 2024-07-04 14:37:05
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
34,432 KB
testcase_01 AC 10 ms
34,432 KB
testcase_02 AC 10 ms
34,432 KB
testcase_03 AC 9 ms
34,432 KB
testcase_04 AC 10 ms
34,504 KB
testcase_05 AC 9 ms
34,492 KB
testcase_06 AC 9 ms
34,432 KB
testcase_07 AC 10 ms
34,452 KB
testcase_08 AC 10 ms
34,432 KB
testcase_09 AC 9 ms
34,432 KB
testcase_10 AC 18 ms
34,548 KB
testcase_11 AC 18 ms
34,432 KB
testcase_12 AC 19 ms
34,432 KB
testcase_13 AC 19 ms
34,432 KB
testcase_14 AC 19 ms
34,432 KB
testcase_15 AC 19 ms
34,432 KB
testcase_16 AC 20 ms
34,432 KB
testcase_17 AC 20 ms
34,432 KB
testcase_18 AC 21 ms
34,432 KB
testcase_19 AC 22 ms
34,504 KB
testcase_20 AC 9 ms
34,432 KB
testcase_21 AC 10 ms
34,432 KB
testcase_22 AC 19 ms
34,404 KB
testcase_23 AC 37 ms
34,452 KB
testcase_24 AC 31 ms
34,432 KB
testcase_25 AC 41 ms
34,432 KB
testcase_26 AC 9 ms
34,528 KB
testcase_27 AC 10 ms
34,492 KB
testcase_28 AC 37 ms
34,432 KB
testcase_29 AC 39 ms
34,444 KB
testcase_30 AC 38 ms
34,408 KB
testcase_31 AC 34 ms
34,512 KB
testcase_32 AC 36 ms
34,432 KB
権限があれば一括ダウンロードができます

ソースコード

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;

  vector<int> cnt(8000001,0);
  for(int i=1;i<=N;i++){
    cnt[i*i*2]++;
    for(int j=i+1;j<=N;j++){
      cnt[i*i+j*j]+=2;
    }
  }

  int ans=0;
  for(int i=1;i<=N;i++){
    for(int j=1;j<=N;j++){
      int x=i*i-j*j+D;
      if(x>=0&&x<=8000000){
        ans+=cnt[i*i-j*j+D];
      }
    }
  }

  cout<<ans<<endl;

}
0