結果

問題 No.800 四平方定理
ユーザー tarattata1tarattata1
提出日時 2019-09-28 00:33:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 71,228 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2023-10-25 08:27:18
合計ジャッジ時間 2,914 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
41,708 KB
testcase_01 AC 18 ms
41,708 KB
testcase_02 AC 17 ms
41,708 KB
testcase_03 AC 18 ms
41,708 KB
testcase_04 AC 18 ms
41,708 KB
testcase_05 AC 18 ms
41,708 KB
testcase_06 AC 22 ms
41,708 KB
testcase_07 AC 18 ms
41,708 KB
testcase_08 AC 18 ms
41,708 KB
testcase_09 AC 18 ms
41,708 KB
testcase_10 AC 34 ms
41,708 KB
testcase_11 AC 38 ms
41,708 KB
testcase_12 AC 37 ms
41,708 KB
testcase_13 AC 33 ms
41,708 KB
testcase_14 AC 35 ms
41,708 KB
testcase_15 AC 38 ms
41,708 KB
testcase_16 AC 38 ms
41,708 KB
testcase_17 AC 36 ms
41,708 KB
testcase_18 AC 41 ms
41,708 KB
testcase_19 AC 40 ms
41,708 KB
testcase_20 AC 18 ms
41,708 KB
testcase_21 AC 17 ms
41,708 KB
testcase_22 AC 39 ms
41,708 KB
testcase_23 AC 65 ms
41,708 KB
testcase_24 AC 61 ms
41,708 KB
testcase_25 AC 64 ms
41,708 KB
testcase_26 AC 17 ms
41,708 KB
testcase_27 AC 18 ms
41,708 KB
testcase_28 AC 61 ms
41,708 KB
testcase_29 AC 63 ms
41,708 KB
testcase_30 AC 61 ms
41,708 KB
testcase_31 AC 56 ms
41,708 KB
testcase_32 AC 60 ms
41,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |     scanf("%d%d", &N, &D);
      |     ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996) 
 
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
using namespace std;



int main(int argc, char* argv[])
{
    int N,D;
    scanf("%d%d", &N, &D);

    vector<int> a(5000000), b(5000000);
    int i,j;
    for(i=1; i<=N; i++) {
        for(j=1; j<=N; j++) {
            int tmp=i*i+j*j;
            if(tmp<5000000) {
                a[tmp]++;
            }
        }
    }
    for(i=1; i<=N; i++) {
        for(j=1; j<=N; j++) {
            int tmp=i*i-j*j+D;
            if(tmp>=0) {
                b[tmp]++;
            }
        }
    }
    ll sum=0;
    for(i=1; i<5000000; i++) {
        sum += (ll)a[i]*b[i];
    }
    printf("%lld\n", sum);

    return 0;
}
0