結果

問題 No.800 四平方定理
ユーザー chocopuuchocopuu
提出日時 2019-03-19 07:14:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,081 bytes
コンパイル時間 1,793 ms
コンパイル使用メモリ 167,432 KB
実行使用メモリ 66,872 KB
最終ジャッジ日時 2024-09-13 04:18:33
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 32 ms
34,972 KB
testcase_11 AC 35 ms
38,608 KB
testcase_12 AC 38 ms
38,072 KB
testcase_13 AC 32 ms
37,700 KB
testcase_14 AC 35 ms
39,152 KB
testcase_15 AC 37 ms
38,276 KB
testcase_16 AC 38 ms
38,872 KB
testcase_17 AC 34 ms
39,660 KB
testcase_18 AC 42 ms
39,060 KB
testcase_19 AC 41 ms
39,764 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 41 ms
39,780 KB
testcase_23 AC 80 ms
65,768 KB
testcase_24 AC 75 ms
65,528 KB
testcase_25 AC 80 ms
65,872 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 73 ms
65,244 KB
testcase_29 AC 77 ms
66,432 KB
testcase_30 AC 73 ms
65,688 KB
testcase_31 AC 67 ms
61,964 KB
testcase_32 AC 78 ms
66,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define fi first
#define se second
#define FOR(i,n) for(int i = 0;i<n;i++)
#define rep(i,s,n) for(int i = s;i<n;i++)
#define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--)
#define all(v) (v).begin(),(v).end()
#define chmin(a,b) a=min((a),(b))
#define chmax(a,b) a=max((a),(b))
#define endl '\n'
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
const ll MOD=1000000007,INF=1ll<<60;
typedef vector<vint>vvint;

int N,D;
int cnt[2020*2020*2]={};

signed main() {
    IOS();
    cin>>N>>D;
    rep(i,1,N+1){
        rep(j,1,N+1){
            cnt[i*i+j*j]++;
        }
    }
    
    int ans=0;
    rep(i,1,N+1){
        rep(j,1,N+1){
            if(D+i*i-j*j>=0)ans+=cnt[D+i*i-j*j];
        }
    }
    cout<<ans<<endl;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    return 0;
}
0