結果

問題 No.800 四平方定理
ユーザー kakira9618kakira9618
提出日時 2019-03-17 21:26:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,227 bytes
コンパイル時間 3,676 ms
コンパイル使用メモリ 166,124 KB
実行使用メモリ 131,984 KB
最終ジャッジ日時 2024-07-07 20:23:01
合計ジャッジ時間 21,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
10,624 KB
testcase_01 AC 15 ms
5,868 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 12 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 19 ms
6,784 KB
testcase_07 AC 15 ms
5,728 KB
testcase_08 AC 19 ms
6,752 KB
testcase_09 AC 17 ms
6,620 KB
testcase_10 AC 1,270 ms
69,048 KB
testcase_11 AC 1,530 ms
75,204 KB
testcase_12 AC 1,501 ms
74,332 KB
testcase_13 AC 1,332 ms
71,484 KB
testcase_14 AC 1,480 ms
75,328 KB
testcase_15 AC 1,429 ms
74,908 KB
testcase_16 AC 1,442 ms
75,776 KB
testcase_17 AC 1,434 ms
75,844 KB
testcase_18 AC 1,476 ms
75,492 KB
testcase_19 AC 1,490 ms
75,756 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,524 ms
75,904 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define all(x) (x).begin(),(x).end()
#define rep(i, n) for (int i = 0; i < (n); i++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define endl "\n"
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

template <typename T> ostream &operator<<(ostream &os, const vector<T> &vec) {os << "["; for (const auto &v : vec) {os << v << ","; } os << "]"; return os;}
template <typename T, typename U> ostream &operator<<(ostream &os, const pair<T, U> &p) {os << "(" << p.first << ", " << p.second << ")"; return os;}

void solve() {
    int N, D;
    cin >> N >> D;

    unordered_map<ll,ll> A, B;
    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= N; j++) {
            A[i * i + j * j]++;
            B[i * i - j * j]++;
        }
    }

    ll ans = 0;
    for(auto b : B) {
        if (!A.count(b.first + D)) continue;
        ll c = A[b.first + D];
        ans += b.second * c;
    }

    cout << ans << endl;

}

int main() {
    #ifdef LOCAL_ENV
    cin.exceptions(ios::failbit);
    #endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    cout.setf(ios::fixed);
    cout.precision(16);
    
    solve();
}
0