結果
問題 | No.800 四平方定理 |
ユーザー | OKCH3COOH |
提出日時 | 2019-11-13 21:31:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,678 bytes |
コンパイル時間 | 1,450 ms |
コンパイル使用メモリ | 134,872 KB |
実行使用メモリ | 94,208 KB |
最終ジャッジ日時 | 2024-09-21 21:15:43 |
合計ジャッジ時間 | 26,262 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
10,624 KB |
testcase_01 | AC | 25 ms
6,144 KB |
testcase_02 | AC | 16 ms
5,376 KB |
testcase_03 | AC | 18 ms
5,632 KB |
testcase_04 | AC | 17 ms
5,376 KB |
testcase_05 | AC | 20 ms
5,632 KB |
testcase_06 | AC | 29 ms
6,656 KB |
testcase_07 | AC | 30 ms
6,784 KB |
testcase_08 | AC | 39 ms
8,320 KB |
testcase_09 | AC | 26 ms
5,888 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,922 ms
63,616 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <map> #include <set> #include <vector> #include <algorithm> #include <iostream> #include <bitset> #include <cassert> #include <queue> #include <random> #include <stack> #include <iomanip> #include <functional> using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template <class A, class B> string to_string(pair<A, B> p); template <class A, class B, class C> string to_string(tuple<A, B, C> p); template <class A, class B, class C, class D> string to_string(tuple<A, B, C, D> p); string to_string(const string& s) { return '"' + s + '"'; } string to_string(const char* s) { return to_string((string) s); } string to_string(bool b) { return (b ? "true" : "false"); } string to_string(vector<bool> v) { bool first = true; string res = "{"; for (int i = 0; i < static_cast<int>(v.size()); i++) { if (!first) { res += ", "; } first = false; res += to_string(v[i]); } res += "}"; return res; } template <size_t N> string to_string(bitset<N> v) { string res = ""; for (size_t i = 0; i < N; i++) { res += static_cast<char>('0' + v[i]); } return res; } template <class A> string to_string(A v) { bool first = true; string res = "{"; for (const auto &x : v) { if (!first) { res += ", "; } first = false; res += to_string(x); } res += "}"; return res; } template <class A, class B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } template <class A, class B, class C> string to_string(tuple<A, B, C> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ")"; } template <class A, class B, class C, class D> string to_string(tuple<A, B, C, D> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ", " + to_string(get<3>(p)) + ")"; } void debug_out() { cerr << endl; } template <class Head, class... Tail> void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); } #ifdef LOCAL #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif using Int = unsigned int; using llong = long long; using Llong = unsigned long long; using ldouble = long double; using intV = vector<int>; using llongV = vector<long long>; using llongVV = vector<vector<long long>>; template<class T = int> using asc_pque = priority_queue<T, vector<T>, greater<T>>; template<class T = int> using desc_pque = priority_queue<T, vector<T>, less<T>>; const llong MOD = 1000000007; const int IINF = 1000000000; const llong LINF = 100000000000000000LL; #define FOR(i, n) for (llong i = 0LL; i < llong(n); i++) #define FORS(i, a, b) for (llong i = llong(a); i < llong(b); i++) #define sup(vec, a) upper_bound(vec.begin(), vec.end(), a) - vec.begin() #define inf(vec, a) lower_bound(vec.begin(), vec.end(), a) - vec.begin() #define GET(i, T) get<i>(T) int main(void) { cin.tie(0); ios::sync_with_stdio(false); llong N, D; cin >> N >> D; map<llong, llong> V; FORS(y, 1, N + 1) { FORS(z, 1, N + 1) { V[y * y + z * z] += 1; } } llong ans = 0; FORS(w, 1, N + 1) { FORS(x, 1, N + 1) { llong E = D + w * w - x * x; if(E < 0) break; ans += V[E]; } } cout << ans << endl; return 0; }