結果

問題 No.800 四平方定理
ユーザー Kutimoti_TKutimoti_T
提出日時 2019-03-17 21:31:09
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 434 bytes
コンパイル時間 1,175 ms
コンパイル使用メモリ 158,608 KB
実行使用メモリ 65,680 KB
最終ジャッジ日時 2024-07-07 20:43:51
合計ジャッジ時間 7,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
7,496 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
7,492 KB
testcase_10 AC 28 ms
36,296 KB
testcase_11 RE -
testcase_12 AC 35 ms
40,264 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 34 ms
40,264 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 37 ms
40,388 KB
testcase_19 AC 30 ms
40,392 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 32 ms
40,264 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)
#define all(x) x.begin(),x.end()

i64 mp[2000 * 2000 * 2 + 10];

int main() {
  i64 N,D;
  cin >> N >> D;
  rep(i,1,N) rep(j,1,N) {
    mp[j * j - i * i + 2000 * 2000]++;
  }
  i64 ans = 0;
  rep(i,1,N) rep(j,1,N) {
    i64 XX = i * i + j * j - D + 2000 * 2000;
    ans += mp[XX];
  }
  cout << ans << endl;
}
0