結果
問題 |
No.800 四平方定理
|
ユーザー |
|
提出日時 | 2019-03-17 22:43:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 167,892 KB |
実行使用メモリ | 81,536 KB |
最終ジャッジ日時 | 2024-07-08 00:59:00 |
合計ジャッジ時間 | 7,096 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 RE * 8 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int MAXV = 5000000; int main() { cin.tie(0); ios::sync_with_stdio(false); int n, d; cin >> n >> d; vector<ll> cnt1(MAXV + 1, 0); for (int x = 1; x <= n; x++) { for (int y = 1; y <= n; y++) { cnt1[x * x + y * y]++; } } vector<ll> cnt2(MAXV + 1, 0); for (int w = 1; w <= n; w++) { int lim = min(n * n, w * w + d); for (int z = 1; z * z <= lim; z++) { cnt2[d + w * w - z * z]++; } } ll ans = 0; for (int i = 0; i <= MAXV; i++) { ans += cnt1[i] * cnt2[i]; } cout << ans << endl; return 0; }