結果
問題 | No.800 四平方定理 |
ユーザー | dsm4up2c |
提出日時 | 2019-03-18 00:47:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 166 ms / 2,000 ms |
コード長 | 764 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 74,068 KB |
実行使用メモリ | 128,244 KB |
最終ジャッジ日時 | 2024-07-08 07:49:59 |
合計ジャッジ時間 | 3,644 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,504 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 4 ms
6,016 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
6,016 KB |
testcase_09 | AC | 4 ms
5,504 KB |
testcase_10 | AC | 62 ms
65,092 KB |
testcase_11 | AC | 69 ms
72,788 KB |
testcase_12 | AC | 72 ms
71,624 KB |
testcase_13 | AC | 62 ms
67,840 KB |
testcase_14 | AC | 67 ms
72,740 KB |
testcase_15 | AC | 69 ms
72,320 KB |
testcase_16 | AC | 65 ms
73,344 KB |
testcase_17 | AC | 66 ms
73,472 KB |
testcase_18 | AC | 76 ms
73,088 KB |
testcase_19 | AC | 74 ms
73,320 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 75 ms
73,436 KB |
testcase_23 | AC | 160 ms
128,244 KB |
testcase_24 | AC | 154 ms
128,128 KB |
testcase_25 | AC | 166 ms
127,712 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 156 ms
127,588 KB |
testcase_29 | AC | 162 ms
127,968 KB |
testcase_30 | AC | 149 ms
127,572 KB |
testcase_31 | AC | 137 ms
118,972 KB |
testcase_32 | AC | 153 ms
128,236 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <cstdio> #include <vector> #include <queue> #include <set> #include <map> #include <numeric> #include <cmath> using namespace std; typedef long long int ll; #define all(x) x.begin(),x.end() const ll mod = 1e9+7; const ll INF = 1e9; const ll MAXN = 1e9; int main() { ll n,d; cin>>n>>d; vector<ll> cnt_xy(2*n*n+1,0),cnt_wz(2*n*n+1,0); for(ll x = 1; x <= n; x++){ for(ll y = 1; y <= n; y++){ ll res = x*x + y*y; cnt_xy[res]++; } } for(ll w = 1; w <= n; w++){ for(ll z = 1; z <= n; z++){ ll res = w*w-z*z+d; if(res>=1 && res <= 2*n*n) cnt_wz[res]++; } } ll ans=0; for(int i = 1; i <= 2*n*n; i++){ ans += cnt_xy[i]*cnt_wz[i]; } cout << ans << endl; return 0; }