結果

問題 No.800 四平方定理
ユーザー hazohelhazohel
提出日時 2019-03-20 14:16:49
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 120,320 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-05-07 18:44:59
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
42,480 KB
testcase_01 AC 15 ms
42,624 KB
testcase_02 AC 13 ms
42,368 KB
testcase_03 AC 14 ms
42,492 KB
testcase_04 AC 15 ms
42,624 KB
testcase_05 AC 15 ms
42,364 KB
testcase_06 AC 14 ms
42,496 KB
testcase_07 AC 15 ms
42,376 KB
testcase_08 AC 15 ms
42,496 KB
testcase_09 AC 14 ms
42,368 KB
testcase_10 AC 29 ms
42,520 KB
testcase_11 AC 29 ms
42,624 KB
testcase_12 AC 33 ms
42,368 KB
testcase_13 AC 29 ms
42,348 KB
testcase_14 AC 32 ms
42,472 KB
testcase_15 AC 31 ms
42,368 KB
testcase_16 AC 32 ms
42,496 KB
testcase_17 AC 31 ms
42,368 KB
testcase_18 AC 35 ms
42,500 KB
testcase_19 AC 31 ms
42,368 KB
testcase_20 AC 15 ms
42,416 KB
testcase_21 AC 14 ms
42,496 KB
testcase_22 AC 32 ms
42,368 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 14 ms
42,496 KB
testcase_27 AC 14 ms
42,368 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define INF 5000000

int N, D;
int LEFT[INF];
int RIGHT[INF];

int main(){
  cin >> N >> D;
  for(int i = 0; i < INF; ++i){
    LEFT[i] = 0;
    RIGHT[i] = 0;
  }
  for(int x = 1;x <= N; ++x){
    for(int y = 1; y <= N; ++y){
      LEFT[x*x+y*y]++;
    }
  }
  for(int z = 1;z <= N; ++z){
    for(int w = 1; w <= N; ++w){
      if(w*w-z*z +D >0){
        RIGHT[w*w - z*z + D]++;
      }
    }
  }
  int ans = 0;
  for(int i = 0; i < INF; ++i){
    ans += LEFT[i] * RIGHT[i];
  }
  cout << ans << endl;
}
0