結果

問題 No.800 四平方定理
ユーザー amesyuamesyu
提出日時 2019-10-05 10:06:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,403 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 90,372 KB
実行使用メモリ 68,016 KB
最終ジャッジ日時 2024-10-05 06:48:28
合計ジャッジ時間 19,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,816 KB
testcase_01 AC 18 ms
6,816 KB
testcase_02 AC 13 ms
6,820 KB
testcase_03 AC 14 ms
6,816 KB
testcase_04 AC 13 ms
6,816 KB
testcase_05 AC 15 ms
6,820 KB
testcase_06 AC 22 ms
6,816 KB
testcase_07 AC 15 ms
6,820 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 20 ms
6,820 KB
testcase_10 AC 659 ms
34,196 KB
testcase_11 AC 710 ms
53,752 KB
testcase_12 AC 735 ms
52,696 KB
testcase_13 AC 614 ms
35,804 KB
testcase_14 AC 665 ms
52,688 KB
testcase_15 AC 742 ms
52,572 KB
testcase_16 AC 658 ms
54,660 KB
testcase_17 AC 659 ms
52,732 KB
testcase_18 AC 805 ms
54,004 KB
testcase_19 AC 797 ms
54,236 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 799 ms
54,480 KB
testcase_23 AC 1,396 ms
65,912 KB
testcase_24 AC 1,216 ms
65,880 KB
testcase_25 AC 1,403 ms
66,384 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1,209 ms
66,344 KB
testcase_29 AC 1,305 ms
68,016 KB
testcase_30 AC 1,218 ms
65,584 KB
testcase_31 AC 1,114 ms
62,076 KB
testcase_32 AC 1,232 ms
65,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>
using namespace std;
int main() {
    long long n, m;
    long long t = 0;
    long long ans = 0;
    cin >> n >> m;
    vector<long long> xy;
    vector<long long> wz;
    for(long long i=1;i<n+1;i++) {
        for(long long j=1;j<n+1;j++) {
            xy.push_back(i*i + j*j);
            wz.push_back(i*i - j*j + m);
            t+=1;
        }
    }
    sort(wz.begin(), wz.end());
    for(int i=0;i<xy.size();i++) {
        long long low = distance(wz.begin(), lower_bound(wz.begin(), wz.end(), xy[i]));
        long long up = distance(wz.begin(), upper_bound(wz.begin(), wz.end(), xy[i]));
        ans += up-low;
    }
    cout << ans <<  endl;
}
0