結果

問題 No.800 四平方定理
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-17 22:10:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 62,088 KB
実行使用メモリ 126,976 KB
最終ジャッジ日時 2024-07-07 23:32:47
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,628 KB
testcase_01 AC 3 ms
8,628 KB
testcase_02 AC 3 ms
6,948 KB
testcase_03 AC 3 ms
8,276 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
7,752 KB
testcase_06 AC 3 ms
8,848 KB
testcase_07 AC 3 ms
8,252 KB
testcase_08 AC 2 ms
7,628 KB
testcase_09 AC 3 ms
8,596 KB
testcase_10 AC 41 ms
64,712 KB
testcase_11 AC 84 ms
71,936 KB
testcase_12 AC 45 ms
70,912 KB
testcase_13 AC 47 ms
67,200 KB
testcase_14 AC 49 ms
72,064 KB
testcase_15 AC 47 ms
71,552 KB
testcase_16 AC 46 ms
72,704 KB
testcase_17 AC 48 ms
72,576 KB
testcase_18 AC 47 ms
72,448 KB
testcase_19 AC 59 ms
72,704 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 46 ms
72,704 KB
testcase_23 AC 126 ms
126,848 KB
testcase_24 AC 125 ms
126,976 KB
testcase_25 AC 132 ms
126,464 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 130 ms
126,208 KB
testcase_29 AC 126 ms
126,592 KB
testcase_30 AC 129 ms
126,336 KB
testcase_31 AC 113 ms
117,888 KB
testcase_32 AC 132 ms
126,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
using namespace std;
typedef long long ll;
int N,D;
ll A[9000010] = {},B[9000010] = {};
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