結果

問題 No.800 四平方定理
ユーザー kappybarkappybar
提出日時 2020-04-11 22:21:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 168,776 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-09-19 14:50:15
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
65,664 KB
testcase_01 AC 18 ms
65,664 KB
testcase_02 AC 19 ms
65,664 KB
testcase_03 AC 20 ms
65,664 KB
testcase_04 AC 20 ms
65,752 KB
testcase_05 AC 19 ms
65,716 KB
testcase_06 AC 19 ms
65,664 KB
testcase_07 AC 18 ms
65,660 KB
testcase_08 AC 19 ms
65,628 KB
testcase_09 AC 18 ms
65,664 KB
testcase_10 AC 48 ms
65,664 KB
testcase_11 AC 45 ms
65,660 KB
testcase_12 AC 51 ms
65,632 KB
testcase_13 AC 44 ms
65,688 KB
testcase_14 AC 51 ms
65,792 KB
testcase_15 AC 49 ms
65,664 KB
testcase_16 AC 50 ms
65,664 KB
testcase_17 AC 45 ms
65,712 KB
testcase_18 AC 57 ms
65,780 KB
testcase_19 AC 52 ms
65,664 KB
testcase_20 AC 19 ms
65,664 KB
testcase_21 AC 19 ms
65,656 KB
testcase_22 AC 58 ms
65,664 KB
testcase_23 AC 84 ms
65,664 KB
testcase_24 AC 85 ms
65,664 KB
testcase_25 AC 87 ms
65,664 KB
testcase_26 AC 20 ms
65,720 KB
testcase_27 AC 20 ms
65,680 KB
testcase_28 AC 86 ms
65,664 KB
testcase_29 AC 81 ms
65,676 KB
testcase_30 AC 84 ms
65,688 KB
testcase_31 AC 73 ms
65,664 KB
testcase_32 AC 87 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const int INF = 1e9;
const int MOD = 1000000007;
const ll MX = 8000005;

int main(){
    ll n,d;
    cin >> n >> d;
    vector<ll> a(MX,0);
    for(ll i=1;i<=n;i++){
        ll res = i * i;
        for(ll j=1;j<=n;j++){
            a[res+j*j] ++;
        }
    }
    ll ans = 0;
    for(ll i=1;i<=n;i++){
        ll res = i * i;
        for(ll j=1;j<=n;j++){
            ll c = res + d - j*j;
            if(c < 0 || c >= MX) continue;
            ans += a[c];
        }
    }
    cout << ans << endl;
    return 0;
}
0