結果

問題 No.800 四平方定理
ユーザー 37zigen37zigen
提出日時 2019-03-17 22:20:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 158,660 KB
実行使用メモリ 34,768 KB
最終ジャッジ日時 2024-07-08 00:02:41
合計ジャッジ時間 2,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
34,632 KB
testcase_01 AC 8 ms
34,444 KB
testcase_02 AC 9 ms
34,604 KB
testcase_03 AC 8 ms
34,768 KB
testcase_04 AC 8 ms
34,696 KB
testcase_05 AC 8 ms
34,760 KB
testcase_06 AC 8 ms
34,560 KB
testcase_07 AC 8 ms
34,632 KB
testcase_08 AC 8 ms
34,544 KB
testcase_09 AC 8 ms
34,608 KB
testcase_10 AC 19 ms
34,728 KB
testcase_11 AC 22 ms
34,604 KB
testcase_12 AC 20 ms
34,676 KB
testcase_13 AC 21 ms
34,672 KB
testcase_14 AC 20 ms
34,620 KB
testcase_15 AC 25 ms
34,532 KB
testcase_16 AC 21 ms
34,492 KB
testcase_17 AC 21 ms
34,680 KB
testcase_18 AC 20 ms
34,684 KB
testcase_19 AC 25 ms
34,692 KB
testcase_20 AC 7 ms
34,612 KB
testcase_21 AC 9 ms
34,548 KB
testcase_22 AC 23 ms
34,688 KB
testcase_23 AC 46 ms
34,684 KB
testcase_24 AC 40 ms
34,564 KB
testcase_25 AC 47 ms
34,604 KB
testcase_26 AC 9 ms
34,664 KB
testcase_27 AC 9 ms
34,600 KB
testcase_28 AC 41 ms
34,484 KB
testcase_29 AC 41 ms
34,492 KB
testcase_30 AC 35 ms
34,468 KB
testcase_31 AC 37 ms
34,416 KB
testcase_32 AC 35 ms
34,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int cnt[8000001];

int main(){
  int N;
  int D;
  std::cin>>N>>D;
  for(int i=0;i<=8000000;++i)cnt[i]=0;
  for(int x=1;x<=N;++x){
    for(int y=1;y<=N;++y){
      ++cnt[x*x+y*y];
    }
  }
  long long ans=0;
  for(int z=1;z<=N;++z){
    for(int w=1;w<=N;++w){
      if(w*w+D-z*z>8000000||w*w+D-z*z<0)continue;
      ans+=cnt[w*w+D-z*z];
    }
  }
  
  std::cout<<ans<<std::endl;

  return 0;
}


0