結果

問題 No.800 四平方定理
ユーザー ugis_progugis_prog
提出日時 2019-03-17 22:32:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,686 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 85,704 KB
実行使用メモリ 95,136 KB
最終ジャッジ日時 2024-07-08 00:35:53
合計ジャッジ時間 21,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 10 ms
5,504 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 11 ms
5,512 KB
testcase_07 AC 11 ms
5,504 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 651 ms
48,888 KB
testcase_11 AC 567 ms
52,604 KB
testcase_12 AC 649 ms
54,388 KB
testcase_13 AC 504 ms
44,664 KB
testcase_14 AC 615 ms
50,040 KB
testcase_15 AC 604 ms
53,496 KB
testcase_16 AC 590 ms
50,424 KB
testcase_17 AC 574 ms
48,504 KB
testcase_18 AC 721 ms
59,256 KB
testcase_19 AC 882 ms
82,680 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 698 ms
57,080 KB
testcase_23 AC 1,559 ms
95,136 KB
testcase_24 AC 1,520 ms
89,124 KB
testcase_25 AC 1,686 ms
93,348 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,576 ms
88,864 KB
testcase_29 AC 1,651 ms
94,500 KB
testcase_30 AC 1,493 ms
86,312 KB
testcase_31 AC 1,382 ms
84,388 KB
testcase_32 AC 1,573 ms
87,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<unordered_map>
#include<map>
using namespace std;

int main(){
    long N,D;
    cin >> N >> D;
    unordered_map<int,long> sqsum; 

    for(int y=1;y<=N;y++){
        for(int z=1;z<=N;z++){
            sqsum[y*y+z*z]++;
        }
    }

    long ans = 0;
    for(long x=1;x<=N;x++){
        for(long w=1;w<=N;w++){
            long c = w*w - x*x + D;
            if(c < 2 || c > 2*N*N) continue;
            ans += sqsum[c];
        }
    }

    cout << ans << endl;
}
0