結果

問題 No.800 四平方定理
ユーザー face4face4
提出日時 2019-03-17 22:02:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 73,072 KB
実行使用メモリ 65,872 KB
最終ジャッジ日時 2024-07-07 23:02:04
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
65,796 KB
testcase_01 AC 23 ms
65,760 KB
testcase_02 AC 24 ms
65,672 KB
testcase_03 AC 23 ms
65,756 KB
testcase_04 AC 22 ms
65,856 KB
testcase_05 AC 22 ms
65,676 KB
testcase_06 AC 24 ms
65,724 KB
testcase_07 AC 23 ms
65,844 KB
testcase_08 AC 22 ms
65,704 KB
testcase_09 AC 22 ms
65,808 KB
testcase_10 AC 43 ms
65,668 KB
testcase_11 AC 48 ms
65,652 KB
testcase_12 AC 48 ms
65,700 KB
testcase_13 AC 45 ms
65,784 KB
testcase_14 AC 49 ms
65,660 KB
testcase_15 AC 48 ms
65,764 KB
testcase_16 AC 50 ms
65,692 KB
testcase_17 AC 47 ms
65,756 KB
testcase_18 AC 52 ms
65,788 KB
testcase_19 AC 46 ms
65,736 KB
testcase_20 AC 22 ms
65,664 KB
testcase_21 AC 22 ms
65,840 KB
testcase_22 AC 47 ms
65,688 KB
testcase_23 AC 84 ms
65,812 KB
testcase_24 AC 85 ms
65,764 KB
testcase_25 AC 82 ms
65,740 KB
testcase_26 AC 21 ms
65,872 KB
testcase_27 AC 23 ms
65,760 KB
testcase_28 AC 79 ms
65,692 KB
testcase_29 AC 83 ms
65,792 KB
testcase_30 AC 81 ms
65,704 KB
testcase_31 AC 75 ms
65,692 KB
testcase_32 AC 82 ms
65,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
using namespace std;
typedef long long ll;

vector<int> l(8000010, 0), r(8000010, 0);

int main(){
    int n;
    ll d;
    cin >> n >> d;
    for(int i = 1; i <= n; i++){
        for(int j = 1; j <= n; j++){
            l[i*i+j*j]++;
            r[4000000+i*i-j*j]++;
        }
    }
    ll ans = 0;
    for(int i = 0; i < 8000001; i++){
        if(i-d+4000000 > 8000009)  break;
        ans += l[i]*r[i-d+4000000];
    }
    cout << ans << endl;
    return 0;
}
0