結果

問題 No.800 四平方定理
ユーザー ngtkanangtkana
提出日時 2020-03-30 22:29:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 203,576 KB
実行使用メモリ 65,784 KB
最終ジャッジ日時 2024-06-23 05:25:44
合計ジャッジ時間 5,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 45 ms
34,176 KB
testcase_11 AC 49 ms
37,888 KB
testcase_12 AC 51 ms
37,368 KB
testcase_13 AC 47 ms
35,584 KB
testcase_14 AC 49 ms
38,016 KB
testcase_15 AC 53 ms
37,772 KB
testcase_16 AC 51 ms
38,400 KB
testcase_17 AC 54 ms
38,400 KB
testcase_18 AC 56 ms
38,272 KB
testcase_19 AC 57 ms
38,108 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 54 ms
38,400 KB
testcase_23 AC 112 ms
65,784 KB
testcase_24 AC 104 ms
65,680 KB
testcase_25 AC 108 ms
65,536 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 98 ms
65,408 KB
testcase_29 AC 106 ms
65,588 KB
testcase_30 AC 99 ms
65,424 KB
testcase_31 AC 91 ms
61,184 KB
testcase_32 AC 101 ms
65,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
using real=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,d;std::cin>>n>>d;
    lint N=2*n*n;
    std::vector<lint>a(N+1);
    for(lint i=1;i<=n;i++)for(lint j=1;j<=n;j++){
        a.at(i*i+j*j)++;
    }
    lint ans=0;
    for(lint i=1;i<=n;i++)for(lint j=1;j<=n;j++){
        lint x=d+i*i-j*j;
        if(0<=x&&x<=N)ans+=a.at(x);
    }
    std::cout<<ans<<'\n';
}

0