結果

問題 No.800 四平方定理
ユーザー 👑 CleyLCleyL
提出日時 2023-06-29 12:33:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 96,916 KB
最終ジャッジ日時 2024-07-06 03:50:09
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 41 ms
49,696 KB
testcase_11 AC 48 ms
55,360 KB
testcase_12 AC 46 ms
54,528 KB
testcase_13 AC 42 ms
51,812 KB
testcase_14 AC 47 ms
55,336 KB
testcase_15 AC 45 ms
55,044 KB
testcase_16 AC 45 ms
55,912 KB
testcase_17 AC 47 ms
55,984 KB
testcase_18 AC 50 ms
55,724 KB
testcase_19 AC 50 ms
55,836 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 50 ms
56,092 KB
testcase_23 AC 96 ms
96,908 KB
testcase_24 AC 92 ms
96,916 KB
testcase_25 AC 90 ms
96,668 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 90 ms
96,472 KB
testcase_29 AC 88 ms
96,728 KB
testcase_30 AC 87 ms
96,620 KB
testcase_31 AC 77 ms
90,084 KB
testcase_32 AC 88 ms
96,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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