結果

問題 No.800 四平方定理
ユーザー _____TAB__________TAB_____
提出日時 2019-03-17 21:57:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 408 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-07-07 22:33:14
合計ジャッジ時間 26,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
10,624 KB
testcase_01 AC 25 ms
6,528 KB
testcase_02 AC 17 ms
5,504 KB
testcase_03 AC 19 ms
5,888 KB
testcase_04 AC 16 ms
5,504 KB
testcase_05 AC 19 ms
5,888 KB
testcase_06 AC 32 ms
7,040 KB
testcase_07 AC 22 ms
6,144 KB
testcase_08 AC 29 ms
7,168 KB
testcase_09 AC 25 ms
6,400 KB
testcase_10 AC 1,658 ms
70,016 KB
testcase_11 AC 1,894 ms
81,920 KB
testcase_12 TLE -
testcase_13 AC 1,674 ms
73,216 KB
testcase_14 AC 1,889 ms
82,944 KB
testcase_15 AC 1,917 ms
78,592 KB
testcase_16 AC 1,927 ms
83,712 KB
testcase_17 AC 1,879 ms
81,024 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main(){
  int N, D;
  cin >> N >> D;
  int ans = 0;
  map<int,int> dp;
  for(int x = 1; x <= N; ++x){
    for(int w = 1; w <= N; ++w){
      ++dp[x*x-w*w];
    }
  }
  for(int y = 1; y <= N; ++y){
    for(int z = 1; z <= N; ++z){
      //if(y*y + z*z > D) break;
      int d = D - y*y - z*z;
      ans += dp[d];
    }
  }
  cout << ans << endl;
}
0