結果
問題 | No.800 四平方定理 |
ユーザー | drken1215 |
提出日時 | 2019-03-17 22:03:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,131 bytes |
コンパイル時間 | 870 ms |
コンパイル使用メモリ | 106,688 KB |
実行使用メモリ | 87,168 KB |
最終ジャッジ日時 | 2024-07-07 23:04:28 |
合計ジャッジ時間 | 5,219 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
87,168 KB |
testcase_01 | AC | 78 ms
81,536 KB |
testcase_02 | AC | 60 ms
81,536 KB |
testcase_03 | AC | 63 ms
81,408 KB |
testcase_04 | AC | 51 ms
81,536 KB |
testcase_05 | AC | 57 ms
81,536 KB |
testcase_06 | AC | 94 ms
81,536 KB |
testcase_07 | AC | 78 ms
81,644 KB |
testcase_08 | AC | 159 ms
81,536 KB |
testcase_09 | AC | 88 ms
81,536 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <iostream> #include <sstream> #include <cstdio> #include <cstdlib> #include <cmath> #include <ctime> #include <cstring> #include <string> #include <vector> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <numeric> #include <utility> #include <iomanip> #include <algorithm> #include <functional> #include <unordered_map> using namespace std; #define REP(i, s) for (int i = 0; i < s; ++i) #define ALL(v) (v.begin(), v.end()) #define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl #define EACH(i, s) for (__typeof__((s).begin()) i = (s).begin(); i != (s).end(); ++i) template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P) { return s << '<' << P.first << ", " << P.second << '>'; } template<class T> ostream& operator << (ostream &s, vector<T> P) { for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; } template<class T> ostream& operator << (ostream &s, vector<vector<T> > P) { for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; } template<class T> ostream& operator << (ostream &s, set<T> P) { EACH(it, P) { s << "<" << *it << "> "; } return s << endl; } template<class T1, class T2> ostream& operator << (ostream &s, map<T1,T2> P) { EACH(it, P) { s << "<" << it->first << "->" << it->second << "> "; } return s << endl; } vector<long long> calc_divisor(long long n) { vector<long long> res; for (long long i = 1LL; i*i <= n; ++i) { if (n % i == 0) { res.push_back(i); long long j = n / i; if (j != i) res.push_back(j); } } sort(res.begin(), res.end()); return res; } long long num[10000000]; int main() { int N; long long D; while (cin >> N >> D) { memset(num, -1, sizeof(num)); long long res = 0; for (long long x = 1; x <= N; ++x) { for (long long y = 1; y <= N; ++y) { long long diff = abs(D - x*x - y*y); if (diff == 0) res += N; else if (num[diff] != -1) res += num[diff]; else { int tmp = 0; auto div = calc_divisor(diff); for (auto d : div) { long long p = diff/d, q = d; if (p <= q) break; if ((p + q) % 2 == 0) { long long z = (p + q) / 2, w = (p - q) / 2; if (z >= 1 && z <= N && w >= 1 && q <= N) { ++tmp; //cout << x << ", " << y << ": " << diff << "; " << p << ", " << q << endl; } } } res += tmp; num[diff] = tmp; } } } cout << res << endl; } }