結果

問題 No.800 四平方定理
ユーザー ugis_progugis_prog
提出日時 2019-03-17 22:14:19
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 547 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 77,352 KB
実行使用メモリ 170,036 KB
最終ジャッジ日時 2024-07-07 23:46:55
合計ジャッジ時間 24,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
12,316 KB
testcase_01 AC 15 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 19 ms
6,944 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 1,173 ms
58,888 KB
testcase_11 AC 1,608 ms
82,436 KB
testcase_12 AC 1,561 ms
82,572 KB
testcase_13 AC 1,518 ms
82,696 KB
testcase_14 AC 1,625 ms
82,692 KB
testcase_15 AC 1,563 ms
82,568 KB
testcase_16 AC 1,642 ms
82,572 KB
testcase_17 AC 1,618 ms
82,548 KB
testcase_18 AC 1,556 ms
82,564 KB
testcase_19 AC 1,579 ms
82,680 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,551 ms
82,564 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    vector<long> sq;
    unordered_map<int,long> sqsum; 
    for(long i=1;i<=N;i++) sq.emplace_back(i*i);
    for(int i=0;i<N;i++){
        for(int j=0;j<N;j++){
            sqsum[sq[i]+sq[j]]++;
        }
    }

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

    cout << ans << endl;
}
0