結果

問題 No.800 四平方定理
ユーザー E31415926E31415926
提出日時 2019-03-17 21:36:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 98,032 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-07-07 21:00:31
合計ジャッジ時間 12,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 364 ms
34,432 KB
testcase_11 AC 409 ms
38,272 KB
testcase_12 AC 409 ms
37,632 KB
testcase_13 AC 379 ms
35,840 KB
testcase_14 AC 409 ms
38,272 KB
testcase_15 AC 415 ms
38,016 KB
testcase_16 AC 410 ms
38,656 KB
testcase_17 AC 409 ms
38,656 KB
testcase_18 AC 423 ms
38,528 KB
testcase_19 AC 423 ms
38,400 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 438 ms
38,656 KB
testcase_23 AC 771 ms
65,920 KB
testcase_24 AC 756 ms
65,920 KB
testcase_25 AC 781 ms
65,920 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 747 ms
65,536 KB
testcase_29 AC 754 ms
65,792 KB
testcase_30 AC 742 ms
65,664 KB
testcase_31 AC 688 ms
61,312 KB
testcase_32 AC 755 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<stack>
#include<cstring>
#include<utility>
#include<cmath>
#include<assert.h>
#include<set>
#include<map>
#include<unordered_set>
#include<unordered_map>
#include<complex>

#define int long long
using namespace std;
#define rep(i, n) for(int i=0;i<(n);++i)
typedef pair<int, int> pii;
const int INF = 1l << 60;
#define u_b upper_bound
#define l_b lower_bound

int xy[2000 * 2000];
int zw[2000 * 2000];

signed main() {
    int n, d;
    cin >> n >> d;
    for (int x = 1; x <= n; ++x) {
        for (int y = 1; y <= n; ++y) {
            xy[(x - 1) * n + (y - 1)] = x * x + y * y;
            zw[(x - 1) * n + (y - 1)] = x * x - y * y;
        }
    }
    sort(xy, xy + n * n);
    sort(zw, zw + n * n);
    int ans = 0;
    rep(i, n * n) {
        ans += u_b(zw, zw + n * n, d - xy[i]) - l_b(zw, zw + n * n, d - xy[i]);
    }
    cout << ans << endl;
    return 0;
}
0