結果

問題 No.800 四平方定理
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-26 01:23:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 167,056 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-06-23 01:14:30
合計ジャッジ時間 3,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 33 ms
28,348 KB
testcase_11 AC 39 ms
30,208 KB
testcase_12 AC 41 ms
30,956 KB
testcase_13 AC 35 ms
27,520 KB
testcase_14 AC 41 ms
29,312 KB
testcase_15 AC 42 ms
31,104 KB
testcase_16 AC 40 ms
29,568 KB
testcase_17 AC 38 ms
29,568 KB
testcase_18 AC 43 ms
33,280 KB
testcase_19 AC 45 ms
33,536 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 45 ms
33,536 KB
testcase_23 AC 96 ms
53,760 KB
testcase_24 AC 84 ms
49,920 KB
testcase_25 AC 91 ms
53,488 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 85 ms
49,664 KB
testcase_29 AC 91 ms
51,456 KB
testcase_30 AC 90 ms
49,536 KB
testcase_31 AC 78 ms
46,336 KB
testcase_32 AC 88 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int cnt1[10000000];
int cnt2[10000000];

int main(){
  int n, d; cin >> n >> d;
  for(int x = 1; x <= n; x++){
    for(int y = 1; y <= n; y++){
      cnt1[x*x+y*y]++;
    }
  }
  for(int z = 1; z <= n; z++){
    for(int w = 1; w <= n; w++){
      if(-z*z+w*w+d<0) continue;
      cnt2[-z*z+w*w+d]++;
    }
  }
  int ans = 0;
  for(int i = 0; i < 1e7; i++){
    ans += cnt1[i]*cnt2[i];
  }
  cout << ans << endl;
  return 0;
}
  
0