結果

問題 No.800 四平方定理
ユーザー 👑 CleyLCleyL
提出日時 2023-06-29 12:32:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 1,161 ms
コンパイル使用メモリ 73,472 KB
実行使用メモリ 159,488 KB
最終ジャッジ日時 2024-07-06 03:48:27
合計ジャッジ時間 3,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
6,144 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,504 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 5 ms
6,656 KB
testcase_07 AC 4 ms
5,888 KB
testcase_08 WA -
testcase_09 AC 5 ms
6,272 KB
testcase_10 AC 67 ms
80,512 KB
testcase_11 AC 69 ms
90,112 KB
testcase_12 AC 64 ms
88,656 KB
testcase_13 AC 59 ms
84,224 KB
testcase_14 AC 67 ms
90,240 KB
testcase_15 AC 64 ms
89,584 KB
testcase_16 AC 68 ms
91,136 KB
testcase_17 AC 64 ms
91,136 KB
testcase_18 AC 67 ms
90,752 KB
testcase_19 AC 67 ms
90,836 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 68 ms
91,136 KB
testcase_23 AC 119 ms
159,488 KB
testcase_24 AC 117 ms
159,488 KB
testcase_25 AC 114 ms
159,036 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 118 ms
158,720 KB
testcase_29 AC 115 ms
159,104 KB
testcase_30 AC 128 ms
158,848 KB
testcase_31 AC 110 ms
147,968 KB
testcase_32 AC 117 ms
159,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  long long n,d;cin>>n>>d;
  vector<long long> A(n*n*3+1);
  vector<long long> B(n*n*2+1);
  for(int i = 1; n >= i; i++){
    for(int j = i; n >= j; j++){
      A[i*i+j*j] += (i==j?1:2);
      B[j*j-i*i]++;
    }
  }
  long long ans = 0;
  for(int i = 0; 2*n*n >= i; i++){
    ans += A[i]*B[abs(i-d)];
  }
  cout << ans << endl;
}
0