結果

問題 No.800 四平方定理
ユーザー nebukuro09nebukuro09
提出日時 2019-04-18 05:16:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 482 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 166,396 KB
実行使用メモリ 65,748 KB
最終ジャッジ日時 2024-09-22 08:45:09
合計ジャッジ時間 8,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
7,516 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
7,524 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 37 ms
36,192 KB
testcase_11 RE -
testcase_12 AC 38 ms
40,284 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 40 ms
40,292 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 42 ms
40,288 KB
testcase_19 AC 41 ms
40,416 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 42 ms
40,284 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

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;

const ll M = 2000 * 2000;
ll N, D;
ll cnt[M*2+1];

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

    ll ans = 0;
    REP2 (z, 1, N+1) REP2 (w, 1, N+1) cnt[z*z-w*w+M] += 1;
    REP2 (x, 1, N+1) REP2 (y, 1, N+1) ans += cnt[D-x*x-y*y+M];
    cout << ans << endl;
}

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