結果

問題 No.800 四平方定理
ユーザー koi_kotyakoi_kotya
提出日時 2019-03-18 18:29:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 167,812 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-07-18 13:20:31
合計ジャッジ時間 3,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
6,144 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 47 ms
34,176 KB
testcase_11 AC 53 ms
38,016 KB
testcase_12 AC 53 ms
37,376 KB
testcase_13 AC 48 ms
35,584 KB
testcase_14 AC 52 ms
38,016 KB
testcase_15 AC 54 ms
37,760 KB
testcase_16 AC 53 ms
38,400 KB
testcase_17 AC 53 ms
38,400 KB
testcase_18 AC 57 ms
38,272 KB
testcase_19 AC 55 ms
38,272 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 57 ms
38,400 KB
testcase_23 AC 120 ms
65,664 KB
testcase_24 AC 113 ms
65,664 KB
testcase_25 AC 116 ms
65,664 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 8 ms
11,136 KB
testcase_28 AC 109 ms
65,408 KB
testcase_29 AC 118 ms
65,536 KB
testcase_30 AC 109 ms
65,536 KB
testcase_31 AC 104 ms
61,056 KB
testcase_32 AC 112 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;

#define p_ary(ary,a,b,i) do { cout << "["; for (int (i) = (a);(i) < (b);++(i)) cout << ary[(i)] << ((b)-1 == (i) ? "" : ", "); cout << "]\n"; } while(0)
#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)

int main() {
    int n,d;
    cin >> n >> d;
    int m = max(2*n*n+1,n*n+d+1);
    vector<int> a(m,0),b(m,0);
    for (int i = 1;i <= n;++i) for (int j = 1;j <= n;++j) a[i*i+j*j]++;
    for (int i = 1;i <= n;++i) for (int j = 1;j <= n;++j) if (i*i-j*j+d > 0) b[i*i-j*j+d]++;
    ll ans = 0;
    for (int i = 1;i < m;++i) ans += a[i]*b[i];
    cout << ans << endl;
    return 0;
}
0