結果

問題 No.800 四平方定理
ユーザー BantakoBantako
提出日時 2019-03-17 21:30:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 169,168 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-07-07 20:38:30
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 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 29 ms
22,656 KB
testcase_11 AC 31 ms
22,912 KB
testcase_12 AC 36 ms
24,960 KB
testcase_13 AC 26 ms
19,712 KB
testcase_14 AC 27 ms
20,864 KB
testcase_15 AC 33 ms
24,832 KB
testcase_16 AC 27 ms
20,992 KB
testcase_17 AC 26 ms
20,992 KB
testcase_18 AC 40 ms
28,928 KB
testcase_19 AC 41 ms
28,928 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 40 ms
28,928 KB
testcase_23 AC 77 ms
42,496 KB
testcase_24 AC 58 ms
34,688 KB
testcase_25 AC 74 ms
42,624 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 57 ms
34,560 KB
testcase_29 AC 67 ms
38,528 KB
testcase_30 AC 59 ms
34,688 KB
testcase_31 AC 55 ms
32,512 KB
testcase_32 AC 57 ms
35,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
using namespace std;
typedef long long ll;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
ll cnt[4001*4001+1000000];
main(){
    ll N,D;
    cin >> N >> D;
    unordered_map<ll,int> mp;
    rep(i,1,N+1)rep(j,1,N+1){
        if(i * i - j * j + D < 1)continue;
        cnt[i * i - j * j + D]++;
    }
    ll ans = 0;
    rep(i,1,N+1)rep(j,1,N+1){
        ans += cnt[i * i + j * j];
    }
    cout << ans << endl;
}
0