結果

問題 No.800 四平方定理
ユーザー outlineoutline
提出日時 2020-03-28 18:05:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,517 bytes
コンパイル時間 1,056 ms
コンパイル使用メモリ 112,280 KB
実行使用メモリ 440,704 KB
最終ジャッジ日時 2024-06-10 17:40:58
合計ジャッジ時間 31,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,424 KB
testcase_01 AC 13 ms
11,352 KB
testcase_02 AC 9 ms
8,960 KB
testcase_03 AC 11 ms
9,728 KB
testcase_04 AC 9 ms
8,704 KB
testcase_05 AC 10 ms
9,600 KB
testcase_06 AC 16 ms
13,040 KB
testcase_07 AC 12 ms
10,624 KB
testcase_08 AC 14 ms
13,056 KB
testcase_09 AC 14 ms
11,684 KB
testcase_10 AC 979 ms
219,700 KB
testcase_11 AC 1,074 ms
246,656 KB
testcase_12 AC 1,125 ms
242,432 KB
testcase_13 AC 977 ms
230,016 KB
testcase_14 AC 1,046 ms
246,528 KB
testcase_15 AC 1,113 ms
245,060 KB
testcase_16 AC 1,058 ms
249,344 KB
testcase_17 AC 1,051 ms
249,216 KB
testcase_18 AC 1,208 ms
248,320 KB
testcase_19 AC 1,210 ms
248,612 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,191 ms
249,344 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,944 ms
408,496 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <complex>
using namespace std;

typedef long long ll;
typedef uint64_t ull;
typedef pair<int, int> P;
typedef pair<int, double> Pid;
typedef pair<double, int> Pdi;
typedef pair<ll, int> Pl;
typedef pair<ll, ll> Pll;
typedef pair<int, pair<int, int>> PP;
typedef pair<P, int> PPi;
constexpr double PI = 3.1415926535897932;   // acos(-1)
constexpr double EPS = 1e-9;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define chadd(x, y) x = (x + y) % mod

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, d;
    cin >> n >> d;
    int ub = n * n * 2;
    vector<vector<ll>> cnt(ub + 1, vector<ll>(2, 0));
    for(int x = 1; x <= n; ++x){
        for(int y = 1; y <= n; ++y){
            int foo = x * x + y * y;
            ++cnt[foo][0];
            int bar = x * x - y * y + d;
            if(bar <= 0 || bar > ub)    continue;
            ++cnt[bar][1];
        }
    }
    ll ans = 0;
    for(int i = 1; i <= ub; ++i)    ans += cnt[i][0] * cnt[i][1];
    cout << ans << endl;
}
0