結果

問題 No.800 四平方定理
ユーザー HyadoHyado
提出日時 2019-03-18 09:12:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 168,952 KB
実行使用メモリ 65,812 KB
最終ジャッジ日時 2024-07-17 22:12:50
合計ジャッジ時間 3,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 33 ms
34,336 KB
testcase_11 AC 38 ms
37,944 KB
testcase_12 AC 42 ms
37,396 KB
testcase_13 AC 34 ms
35,632 KB
testcase_14 AC 36 ms
38,040 KB
testcase_15 AC 39 ms
37,864 KB
testcase_16 AC 38 ms
38,404 KB
testcase_17 AC 38 ms
38,440 KB
testcase_18 AC 40 ms
38,308 KB
testcase_19 AC 42 ms
38,308 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 43 ms
38,224 KB
testcase_23 AC 82 ms
65,656 KB
testcase_24 AC 74 ms
65,812 KB
testcase_25 AC 81 ms
65,496 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 76 ms
65,404 KB
testcase_29 AC 80 ms
65,548 KB
testcase_30 AC 71 ms
65,492 KB
testcase_31 AC 67 ms
61,080 KB
testcase_32 AC 74 ms
65,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main (){
    int n,d,ans=0;
    cin >> n >> d;

    vector<int> xy(2*n*n+1,0);
    vector<int> zw(2*n*n+1,0);
    //メモリを使って左辺、右辺がある値になる場合の個数を記憶
        
    for(int x=1;x<=n;x++){
        for(int y=1;y<=n;y++){
            xy.at(x*x+y*y-1)++;
        }
    }
    
    for(int w=1;w<=n;w++){
        for(int z=1;z<=n;z++){
            if((w*w-z*z+d) <= (2*n*n) && 0 <= w*w-z*z+d-1){
            zw.at(w*w-z*z+d-1)++;
            }
        }
    }

    for(int i=0;i<2*n*n;i++){
        ans += xy.at(i)*zw.at(i);
    }
    
    cout << ans << endl;
}
0