結果

問題 No.800 四平方定理
ユーザー 里旬里旬
提出日時 2019-03-17 21:33:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,153 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 206,892 KB
実行使用メモリ 34,808 KB
最終ジャッジ日時 2024-07-07 20:53:39
合計ジャッジ時間 17,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 17 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 19 ms
6,944 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 16 ms
6,940 KB
testcase_10 AC 543 ms
18,752 KB
testcase_11 AC 601 ms
29,724 KB
testcase_12 AC 659 ms
29,500 KB
testcase_13 AC 512 ms
19,648 KB
testcase_14 AC 541 ms
29,992 KB
testcase_15 AC 614 ms
29,256 KB
testcase_16 AC 553 ms
30,184 KB
testcase_17 AC 558 ms
29,860 KB
testcase_18 AC 666 ms
28,904 KB
testcase_19 AC 660 ms
29,732 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 670 ms
29,988 KB
testcase_23 AC 1,149 ms
34,748 KB
testcase_24 AC 1,042 ms
34,568 KB
testcase_25 AC 1,153 ms
34,620 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,016 ms
34,428 KB
testcase_29 AC 1,080 ms
34,580 KB
testcase_30 AC 1,020 ms
34,536 KB
testcase_31 AC 934 ms
34,080 KB
testcase_32 AC 1,055 ms
34,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout.precision(12);
    cout.setf(ios_base::fixed, ios_base::floatfield);
    
    int n, d;
    cin >> n >> d;

    vector<int> xy, zw;
    for(int i=1;i<=n;i++){
        for(int j=1;j<=n;j++){
            xy.push_back(i*i+j*j);
            zw.push_back(i*i-j*j);
        }
    }
    sort(zw.begin(), zw.end());

    uint64_t ans = 0;
    for(auto lhs:xy){
        ans += distance(lower_bound(zw.begin(), zw.end(), lhs-d), upper_bound(zw.begin(), zw.end(), lhs-d));
    } 

    cout << ans << endl;

    return 0;
}
0