結果

問題 No.800 四平方定理
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-17 22:07:53
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 452 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 61,504 KB
実行使用メモリ 81,328 KB
最終ジャッジ日時 2024-07-07 23:23:55
合計ジャッジ時間 6,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
8,492 KB
testcase_06 AC 3 ms
7,500 KB
testcase_07 AC 3 ms
9,676 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 60 ms
64,636 KB
testcase_11 AC 76 ms
72,932 KB
testcase_12 AC 68 ms
71,368 KB
testcase_13 AC 65 ms
67,812 KB
testcase_14 AC 72 ms
73,276 KB
testcase_15 AC 70 ms
73,048 KB
testcase_16 AC 72 ms
73,660 KB
testcase_17 AC 76 ms
73,328 KB
testcase_18 AC 75 ms
72,732 KB
testcase_19 AC 76 ms
73,472 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 81 ms
74,132 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
using namespace std;
typedef long long ll;
int N,D;
ll A[5000010] = {},B[5000010] = {};
int main(){
    cin >> N >> D;
//    unordered_map<int,ll> m2;
    for(int i=1;i<=N;i++){
        for(int j=1;j<=N;j++){
            A[i*i+j*j]++;
            B[i*i-j*j+N*N]++;
        }
    }
    ll ans = 0;
    for(int i=1;i<=2*N*N;i++){
        if(D-i+N*N>=0) ans += A[i]*B[D-i+N*N];
    }
    cout << ans << endl;
}
0