結果

問題 No.800 四平方定理
ユーザー tarattata1tarattata1
提出日時 2019-09-28 00:33:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 70,860 KB
実行使用メモリ 41,940 KB
最終ジャッジ日時 2024-09-25 03:35:42
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
41,932 KB
testcase_01 AC 18 ms
41,912 KB
testcase_02 AC 18 ms
41,844 KB
testcase_03 AC 19 ms
41,936 KB
testcase_04 AC 17 ms
41,760 KB
testcase_05 AC 18 ms
41,852 KB
testcase_06 AC 18 ms
41,792 KB
testcase_07 AC 18 ms
41,832 KB
testcase_08 AC 18 ms
41,788 KB
testcase_09 AC 18 ms
41,752 KB
testcase_10 AC 33 ms
41,840 KB
testcase_11 AC 32 ms
41,824 KB
testcase_12 AC 33 ms
41,848 KB
testcase_13 AC 31 ms
41,940 KB
testcase_14 AC 33 ms
41,860 KB
testcase_15 AC 35 ms
41,760 KB
testcase_16 AC 34 ms
41,780 KB
testcase_17 AC 34 ms
41,848 KB
testcase_18 AC 37 ms
41,872 KB
testcase_19 AC 37 ms
41,888 KB
testcase_20 AC 17 ms
41,864 KB
testcase_21 AC 18 ms
41,856 KB
testcase_22 AC 37 ms
41,844 KB
testcase_23 AC 55 ms
41,784 KB
testcase_24 AC 49 ms
41,752 KB
testcase_25 AC 50 ms
41,844 KB
testcase_26 AC 17 ms
41,780 KB
testcase_27 AC 17 ms
41,852 KB
testcase_28 AC 48 ms
41,920 KB
testcase_29 AC 51 ms
41,928 KB
testcase_30 AC 48 ms
41,920 KB
testcase_31 AC 48 ms
41,864 KB
testcase_32 AC 49 ms
41,776 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