結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | Kude |
提出日時 | 2023-10-20 21:53:42 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,658 bytes |
コンパイル時間 | 3,350 ms |
コンパイル使用メモリ | 269,748 KB |
実行使用メモリ | 319,452 KB |
最終ジャッジ日時 | 2024-09-20 18:33:47 |
合計ジャッジ時間 | 43,081 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 178 ms
318,564 KB |
testcase_01 | AC | 181 ms
318,692 KB |
testcase_02 | AC | 246 ms
317,924 KB |
testcase_03 | AC | 181 ms
318,436 KB |
testcase_04 | AC | 197 ms
318,440 KB |
testcase_05 | AC | 179 ms
319,072 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 186 ms
318,696 KB |
testcase_16 | AC | 182 ms
318,308 KB |
testcase_17 | AC | 177 ms
319,204 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 321 ms
318,312 KB |
testcase_21 | AC | 253 ms
318,692 KB |
testcase_22 | AC | 236 ms
318,312 KB |
testcase_23 | AC | 228 ms
318,696 KB |
testcase_24 | AC | 246 ms
318,944 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 248 ms
318,304 KB |
testcase_28 | RE | - |
testcase_29 | AC | 249 ms
318,816 KB |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic warning "-Wunused-function" using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; constexpr int M = 300; constexpr int MX = M * M * M * 3; int t[MX + 1]; } int main() { ios::sync_with_stdio(false); cin.tie(0); int x; cin >> x; ll ans = 0; rrep(c, M + 1) { int vc = c * c * c; rrep(b, c + 1) { int vb = vc + b * b * b; rrep(a, b + 1) { int va = vb + a * a * a; t[va]++; } } } for (int d = M; d >= 0; d--) { int vd = x - d * d * d; if (vd >= 0) { for (int e = d; e <= M; e++) { int ve = vd - e * e * e; if (ve < 0) break; for (int f = e; f <= M; f++) { int vf = ve - f * f * f; if (vf < 0) break; ans += t[vf]; } } } { const int c = d; int vc = c * c * c; rrep(b, c + 1) { int vb = vc + b * b * b; rrep(a, b + 1) { int va = vb + a * a * a; t[va]--; } } } } cout << ans << '\n'; }