結果

問題 No.800 四平方定理
ユーザー _____TAB__________TAB_____
提出日時 2019-03-17 22:02:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 68,872 KB
実行使用メモリ 38,528 KB
最終ジャッジ日時 2024-07-07 22:54:16
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
38,528 KB
testcase_01 AC 25 ms
38,400 KB
testcase_02 AC 26 ms
38,400 KB
testcase_03 AC 25 ms
38,400 KB
testcase_04 AC 24 ms
38,528 KB
testcase_05 AC 24 ms
38,400 KB
testcase_06 AC 24 ms
38,400 KB
testcase_07 AC 24 ms
38,528 KB
testcase_08 AC 25 ms
38,400 KB
testcase_09 AC 24 ms
38,400 KB
testcase_10 AC 41 ms
38,400 KB
testcase_11 AC 47 ms
38,400 KB
testcase_12 AC 46 ms
38,528 KB
testcase_13 AC 44 ms
38,400 KB
testcase_14 AC 46 ms
38,400 KB
testcase_15 AC 48 ms
38,400 KB
testcase_16 AC 49 ms
38,400 KB
testcase_17 AC 47 ms
38,400 KB
testcase_18 AC 48 ms
38,528 KB
testcase_19 AC 49 ms
38,400 KB
testcase_20 AC 24 ms
38,528 KB
testcase_21 AC 24 ms
38,400 KB
testcase_22 AC 52 ms
38,400 KB
testcase_23 AC 91 ms
38,400 KB
testcase_24 AC 86 ms
38,528 KB
testcase_25 AC 94 ms
38,400 KB
testcase_26 AC 25 ms
38,400 KB
testcase_27 AC 24 ms
38,400 KB
testcase_28 AC 85 ms
38,400 KB
testcase_29 AC 86 ms
38,400 KB
testcase_30 AC 84 ms
38,400 KB
testcase_31 AC 77 ms
38,400 KB
testcase_32 AC 88 ms
38,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
vector<int> dp(9e6,0);

int main(){
  int N, D;
  cin >> N >> D;
  int ans = 0;
  int m = 4e6;
  for(int x = 1; x <= N; ++x){
    for(int w = 1; w <= N; ++w){
      ++dp[x*x-w*w+m];
    }
  }
  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;
      if(d+m >= (int)dp.size() or d+m < 0) continue;
      ans += dp.at(d+m);
    }
  }
  cout << ans << endl;
}
0