結果

問題 No.800 四平方定理
ユーザー @abcde@abcde
提出日時 2019-03-17 23:15:23
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 788 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 165,160 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-07-08 02:20:54
合計ジャッジ時間 11,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
13,752 KB
testcase_01 AC 26 ms
6,940 KB
testcase_02 AC 17 ms
6,940 KB
testcase_03 AC 20 ms
6,944 KB
testcase_04 AC 16 ms
6,940 KB
testcase_05 AC 19 ms
6,940 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 23 ms
6,940 KB
testcase_08 AC 32 ms
7,168 KB
testcase_09 AC 27 ms
6,940 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 計算量削減する必要あり.
#include <bits/stdc++.h>
using namespace std;

int main() {
    
    // 1. 入力情報取得.
    int N, D;
    cin >> N >> D;
    
    // 2. 解を確認.
    int ans = 0;
    map<int, int> zwD;
    // w * w - z * z + D を 保管.
    for(int z = 1; z < N + 1; z++){
        for(int w = 1; w < N + 1; w++){
            int v = w * w - z * z + D;
            zwD[v]++;
        }
    }
    
    // x, y を 探索してカウント.
    for(int x = 1; x < N + 1; x++){
        for(int y = x; y < N + 1; y++){
            int v = x * x + y * y;
            int z = zwD[v];
            if(z > 0 && x != y) ans += (z * 2);
            if(z > 0 && x == y) ans += z;
        }
    }
    
    // 3. 後処理.
    cout << ans << endl;
    return 0;
    
}
0