結果
問題 |
No.800 四平方定理
|
ユーザー |
![]() |
提出日時 | 2019-03-17 23:09:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 498 bytes |
コンパイル時間 | 1,424 ms |
コンパイル使用メモリ | 169,552 KB |
実行使用メモリ | 42,548 KB |
最終ジャッジ日時 | 2024-07-08 01:59:15 |
合計ジャッジ時間 | 8,309 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 RE * 1 |
other | AC * 4 RE * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; ll n, d, ans; int main() { cin >> n >> d; vector<ll> X(n * n + d); for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { X[i * i + j * j]++; } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { int x = i * i - j * j + d; if (x > 0) ans += X[x]; } } cout << ans << endl; }