結果

問題 No.2510 Six Cube Sum Counting
ユーザー KudeKude
提出日時 2023-10-20 21:53:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,658 bytes
コンパイル時間 3,158 ms
コンパイル使用メモリ 269,584 KB
実行使用メモリ 319,692 KB
最終ジャッジ日時 2023-10-20 21:54:28
合計ジャッジ時間 29,389 ms
ジャッジサーバーID
(参考情報)
judge10 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
319,640 KB
testcase_01 AC 147 ms
319,640 KB
testcase_02 AC 199 ms
319,692 KB
testcase_03 AC 150 ms
319,640 KB
testcase_04 AC 178 ms
319,640 KB
testcase_05 AC 154 ms
319,640 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 148 ms
319,640 KB
testcase_16 AC 149 ms
319,640 KB
testcase_17 AC 148 ms
319,640 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 177 ms
319,692 KB
testcase_21 AC 196 ms
319,692 KB
testcase_22 AC 191 ms
319,692 KB
testcase_23 AC 187 ms
319,692 KB
testcase_24 AC 195 ms
319,692 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 195 ms
319,692 KB
testcase_28 RE -
testcase_29 AC 191 ms
319,692 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;
          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