結果

問題 No.800 四平方定理
ユーザー Kutimoti_TKutimoti_T
提出日時 2019-03-17 21:32:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 158,480 KB
実行使用メモリ 65,904 KB
最終ジャッジ日時 2024-07-07 20:49:18
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
7,492 KB
testcase_07 AC 2 ms
7,500 KB
testcase_08 AC 2 ms
7,496 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 26 ms
36,164 KB
testcase_11 AC 29 ms
40,388 KB
testcase_12 AC 29 ms
38,212 KB
testcase_13 AC 25 ms
38,220 KB
testcase_14 AC 27 ms
38,220 KB
testcase_15 AC 29 ms
40,264 KB
testcase_16 AC 30 ms
40,264 KB
testcase_17 AC 31 ms
40,268 KB
testcase_18 AC 31 ms
40,264 KB
testcase_19 AC 29 ms
40,264 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 33 ms
40,388 KB
testcase_23 AC 68 ms
65,860 KB
testcase_24 AC 65 ms
65,792 KB
testcase_25 AC 65 ms
65,728 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 65 ms
65,556 KB
testcase_29 AC 70 ms
65,724 KB
testcase_30 AC 87 ms
65,488 KB
testcase_31 AC 58 ms
62,920 KB
testcase_32 AC 65 ms
65,904 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    if(XX < 0 || XX >= 2000 * 2000 * 2 + 10) continue;
    ans += mp[XX];
  }
  cout << ans << endl;
}
0