結果

問題 No.800 四平方定理
ユーザー amesyuamesyu
提出日時 2019-10-05 10:08:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,415 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 102,116 KB
実行使用メモリ 65,848 KB
最終ジャッジ日時 2024-10-05 06:57:58
合計ジャッジ時間 19,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,820 KB
testcase_01 AC 20 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,820 KB
testcase_05 AC 15 ms
6,816 KB
testcase_06 AC 21 ms
6,816 KB
testcase_07 AC 15 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 19 ms
6,820 KB
testcase_10 AC 637 ms
34,624 KB
testcase_11 AC 693 ms
52,736 KB
testcase_12 AC 719 ms
56,052 KB
testcase_13 AC 588 ms
35,712 KB
testcase_14 AC 643 ms
52,932 KB
testcase_15 AC 714 ms
52,652 KB
testcase_16 AC 665 ms
53,140 KB
testcase_17 AC 647 ms
53,116 KB
testcase_18 AC 775 ms
55,992 KB
testcase_19 AC 770 ms
56,116 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 771 ms
53,852 KB
testcase_23 AC 1,415 ms
65,840 KB
testcase_24 AC 1,234 ms
65,824 KB
testcase_25 AC 1,390 ms
65,692 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1,178 ms
65,496 KB
testcase_29 AC 1,334 ms
65,752 KB
testcase_30 AC 1,233 ms
65,536 KB
testcase_31 AC 1,138 ms
61,596 KB
testcase_32 AC 1,259 ms
65,848 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