結果

問題 No.800 四平方定理
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-17 21:42:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 420 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 78,908 KB
実行使用メモリ 142,048 KB
最終ジャッジ日時 2024-07-07 21:27:46
合計ジャッジ時間 21,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
12,188 KB
testcase_01 AC 16 ms
6,816 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 18 ms
6,944 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 1,188 ms
69,288 KB
testcase_11 AC 1,237 ms
75,304 KB
testcase_12 AC 1,265 ms
74,436 KB
testcase_13 AC 1,176 ms
71,592 KB
testcase_14 AC 1,325 ms
75,308 KB
testcase_15 AC 1,330 ms
74,896 KB
testcase_16 AC 1,342 ms
76,004 KB
testcase_17 AC 1,372 ms
76,004 KB
testcase_18 AC 1,307 ms
75,600 KB
testcase_19 AC 1,288 ms
75,736 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1,273 ms
76,004 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 <unordered_map>
using namespace std;
typedef long long ll;
int N,D;
int main(){
    cin >> N >> D;
    unordered_map<int,ll> m1,m2;
    for(int i=1;i<=N;i++){
        for(int j=1;j<=N;j++){
            m1[i*i+j*j]++;
            m2[i*i-j*j]++;
        }
    }
    ll ans = 0;
    for(auto x:m1){
        if(m2.count(D-x.first)) ans += x.second*m2[D-x.first];
    }
    cout << ans << endl;
}
0