結果

問題 No.800 四平方定理
ユーザー yuji9511yuji9511
提出日時 2019-03-18 11:50:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 158,504 KB
実行使用メモリ 64,364 KB
最終ジャッジ日時 2024-07-18 05:02:39
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 30 ms
35,628 KB
testcase_11 AC 31 ms
38,280 KB
testcase_12 AC 34 ms
37,732 KB
testcase_13 AC 28 ms
35,960 KB
testcase_14 AC 34 ms
39,308 KB
testcase_15 AC 32 ms
39,100 KB
testcase_16 AC 33 ms
38,772 KB
testcase_17 AC 32 ms
39,488 KB
testcase_18 AC 35 ms
39,180 KB
testcase_19 AC 32 ms
38,728 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 37 ms
38,804 KB
testcase_23 AC 71 ms
64,364 KB
testcase_24 AC 62 ms
64,352 KB
testcase_25 AC 73 ms
64,184 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 63 ms
64,104 KB
testcase_29 AC 78 ms
64,160 KB
testcase_30 AC 72 ms
64,140 KB
testcase_31 AC 68 ms
59,868 KB
testcase_32 AC 68 ms
64,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
#define rep(i,m,n) for(ll i = (m); i < (n); i++)
#define rrep(i,m,n) for(ll i = (m); i >= (n); i--)
#define print(x) cout << (x) << endl;
#define print2(x,y) cout << (x) << " " << (y) << endl;
#define printa(x,n) for(ll i = 0; i < n; i++){ cout << (x[i]) << " \n"[i == n-1];}
#define printp(x,n) for(ll i = 0; i < n; i++){ cout << "(" << x[i].first << ", " << x[i].second << ") "; } cout << endl;
#define INF (1e18 + 7)
using namespace std;
const ll MOD = 1e9 + 7;
typedef pair<ll, ll> lpair;
ll cnt[8000010] = {};

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N,D;
    cin >> N >> D;
    rep(x,1,N+1){
        rep(y,1,N+1){
            cnt[x*x+y*y]++;
        }
    }
    ll ans = 0;
    
    rep(z,1,N+1){
        rep(w,1,N+1){
            ll v = D + w*w - z*z;
            if(v <= 0) continue;
            ans += cnt[v];
        }
    }
    print(ans);


 }
0