結果

問題 No.2510 Six Cube Sum Counting
ユーザー KudeKude
提出日時 2023-10-20 21:55:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 4,000 ms
コード長 1,672 bytes
コンパイル時間 3,171 ms
コンパイル使用メモリ 269,604 KB
実行使用メモリ 319,696 KB
最終ジャッジ日時 2023-10-20 21:55:52
合計ジャッジ時間 9,505 ms
ジャッジサーバーID
(参考情報)
judge10 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
319,644 KB
testcase_01 AC 146 ms
319,644 KB
testcase_02 AC 198 ms
319,696 KB
testcase_03 AC 175 ms
319,644 KB
testcase_04 AC 148 ms
319,644 KB
testcase_05 AC 149 ms
319,644 KB
testcase_06 AC 181 ms
319,696 KB
testcase_07 AC 157 ms
319,644 KB
testcase_08 AC 171 ms
319,696 KB
testcase_09 AC 157 ms
319,644 KB
testcase_10 AC 177 ms
319,644 KB
testcase_11 AC 157 ms
319,644 KB
testcase_12 AC 157 ms
319,644 KB
testcase_13 AC 155 ms
319,644 KB
testcase_14 AC 154 ms
319,644 KB
testcase_15 AC 149 ms
319,644 KB
testcase_16 AC 147 ms
319,644 KB
testcase_17 AC 151 ms
319,644 KB
testcase_18 AC 180 ms
319,644 KB
testcase_19 AC 154 ms
319,644 KB
testcase_20 AC 184 ms
319,696 KB
testcase_21 AC 202 ms
319,696 KB
testcase_22 AC 194 ms
319,696 KB
testcase_23 AC 184 ms
319,696 KB
testcase_24 AC 226 ms
319,696 KB
testcase_25 AC 155 ms
319,696 KB
testcase_26 AC 207 ms
319,696 KB
testcase_27 AC 201 ms
319,696 KB
testcase_28 AC 153 ms
319,644 KB
testcase_29 AC 197 ms
319,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
          if (vf <= MX) 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';
}
0