結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 NachiaNachia
提出日時 2023-10-20 21:42:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 385 ms / 4,000 ms
コード長 895 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 80,552 KB
実行使用メモリ 347,136 KB
最終ジャッジ日時 2024-09-20 17:53:04
合計ジャッジ時間 11,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
346,984 KB
testcase_01 AC 306 ms
346,896 KB
testcase_02 AC 381 ms
346,888 KB
testcase_03 AC 305 ms
347,008 KB
testcase_04 AC 300 ms
347,040 KB
testcase_05 AC 297 ms
346,892 KB
testcase_06 AC 356 ms
346,868 KB
testcase_07 AC 302 ms
346,960 KB
testcase_08 AC 333 ms
346,808 KB
testcase_09 AC 304 ms
346,944 KB
testcase_10 AC 304 ms
346,880 KB
testcase_11 AC 309 ms
346,892 KB
testcase_12 AC 309 ms
347,008 KB
testcase_13 AC 311 ms
347,008 KB
testcase_14 AC 309 ms
346,868 KB
testcase_15 AC 304 ms
347,016 KB
testcase_16 AC 312 ms
346,880 KB
testcase_17 AC 303 ms
347,008 KB
testcase_18 AC 300 ms
347,008 KB
testcase_19 AC 301 ms
347,008 KB
testcase_20 AC 366 ms
346,924 KB
testcase_21 AC 374 ms
347,096 KB
testcase_22 AC 374 ms
346,800 KB
testcase_23 AC 350 ms
346,828 KB
testcase_24 AC 379 ms
347,008 KB
testcase_25 AC 309 ms
347,136 KB
testcase_26 AC 378 ms
346,800 KB
testcase_27 AC 385 ms
347,008 KB
testcase_28 AC 306 ms
347,008 KB
testcase_29 AC 377 ms
347,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;


void testcase(){
    i64 X; cin >> X;
    vector<i64> cube(301);
    vector<int> Map(88'000'000);
    rep(i,301) cube[i] = i*i*i;
    i64 ans = 0;
    for(int s=0; s<=300; s++){
        for(int a=0; a<=s; a++) for(int b=a; b<=s; b++) Map[cube[a]+cube[b]+cube[s]]++;
        for(int a=s; a<=300; a++) for(int b=a; b<=300; b++){
            int x = X-(cube[a]+cube[b]+cube[s]);
            if(0 <= x && x < (int)Map.size()) ans += Map[x];
        }
    }
    cout << ans << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    testcase();
    return 0;
}
0