結果

問題 No.800 四平方定理
ユーザー SuikabaSuikaba
提出日時 2019-03-17 21:28:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 472 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 209,028 KB
実行使用メモリ 132,148 KB
最終ジャッジ日時 2024-07-07 20:33:22
合計ジャッジ時間 28,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
13,752 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 14 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 21 ms
6,944 KB
testcase_07 AC 16 ms
6,944 KB
testcase_08 AC 22 ms
6,940 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 1,752 ms
69,288 KB
testcase_11 TLE -
testcase_12 AC 1,994 ms
74,312 KB
testcase_13 AC 1,863 ms
71,592 KB
testcase_14 TLE -
testcase_15 AC 1,990 ms
75,016 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 TLE -
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;

using ll = long long;

int main() {
    int n, d; cin >> n >> d;
    unordered_map<int, ll> l, r;
    for(int a = 1; a <= n; ++a) {
        for(int b = 1; b <= n; ++b) {
            l[a * a + b * b] += 1;
            r[a * a - b * b + d] += 1;
        }
    }

    ll ans = 0;
    for(auto const& p : l) {
        if(r.count(p.first) == 0) continue;
        ans += p.second * r[p.first];
    }
    
    cout << ans << endl;
}
0