結果

問題 No.800 四平方定理
ユーザー nebukuro09nebukuro09
提出日時 2019-04-18 05:13:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,998 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 174,064 KB
実行使用メモリ 88,248 KB
最終ジャッジ日時 2024-09-22 08:45:00
合計ジャッジ時間 28,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 14 ms
6,944 KB
testcase_10 AC 826 ms
45,696 KB
testcase_11 AC 916 ms
49,548 KB
testcase_12 AC 900 ms
48,908 KB
testcase_13 AC 876 ms
46,988 KB
testcase_14 AC 916 ms
49,376 KB
testcase_15 AC 942 ms
49,292 KB
testcase_16 AC 1,023 ms
49,800 KB
testcase_17 AC 1,004 ms
49,804 KB
testcase_18 AC 918 ms
49,676 KB
testcase_19 AC 1,030 ms
49,804 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1,030 ms
49,828 KB
testcase_23 AC 1,967 ms
88,116 KB
testcase_24 AC 1,905 ms
88,116 KB
testcase_25 AC 1,927 ms
87,736 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1,955 ms
87,740 KB
testcase_29 AC 1,998 ms
87,988 KB
testcase_30 AC 1,940 ms
87,868 KB
testcase_31 AC 1,749 ms
83,768 KB
testcase_32 AC 1,966 ms
88,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)
#define REP2(i,m,n) for (int i=m;i<(n);i++)
typedef long long ll;

ll N, D;

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

    unordered_map<ll, ll> cnt;
    REP2 (z, 1, N+1) REP2 (w, 1, N+1) cnt[z*z-w*w] += 1;
    ll ans = 0;

    REP2 (x, 1, N+1) {
        REP2 (y, 1, N+1) {
            if (cnt.find(D-x*x-y*y) != cnt.end()) {
                ans += cnt[D-x*x-y*y];
            }
        }
    }

    cout << ans << endl;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0