結果

問題 No.800 四平方定理
ユーザー polyomino_24polyomino_24
提出日時 2019-03-18 15:22:50
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,363 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 99,532 KB
実行使用メモリ 91,292 KB
最終ジャッジ日時 2023-09-25 12:32:35
合計ジャッジ時間 4,987 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
5,416 KB
testcase_01 AC 34 ms
7,232 KB
testcase_02 AC 22 ms
6,028 KB
testcase_03 AC 27 ms
6,528 KB
testcase_04 AC 22 ms
6,196 KB
testcase_05 AC 25 ms
6,496 KB
testcase_06 AC 42 ms
8,112 KB
testcase_07 AC 30 ms
6,980 KB
testcase_08 AC 41 ms
8,368 KB
testcase_09 AC 37 ms
7,380 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <vector>
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
//#define cerr if(false) cerr
#define show(...) cerr << #__VA_ARGS__ << " = ",debug(__VA_ARGS__);
using namespace std;
using ll = long long;
using pii = pair<int,int>;
template<typename T, typename S>
ostream &operator<<(ostream &os, pair<T, S> a){
    os << '(' << a.first << ',' << a.second << ')';
    return os;
}
template<typename T>
ostream &operator<<(ostream &os, vector<T> v){
    for(auto x:v)os << x << ' ';
    return os;
}
void debug(){cerr << '\n';}
template<typename H, typename... T>
void debug(H a, T... b){
    cerr << a;
    if(sizeof...(b))cerr << ", ";
    debug(b...);
}
int main(){
    ll n,d;
    cin >> n >> d;
    map<ll,ll>mp;
    for(ll i = 1; i <= n; i++){
        for(int j = 1; j <= n; j++){
            mp[i*i-j*j]++;
        }
    }
    ll ans = 0;
    for(int i = 1; i <= n; i++){
        for(int j = 1; j <= n; j++){
            ans += mp[i*i+j*j-d];
        }
    }
    cout << ans << endl;
}
0