結果

問題 No.2510 Six Cube Sum Counting
ユーザー i_am_noobi_am_noob
提出日時 2023-11-14 23:01:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 404 ms / 4,000 ms
コード長 620 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 200,564 KB
実行使用メモリ 280,064 KB
最終ジャッジ日時 2024-09-26 04:24:26
合計ジャッジ時間 12,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
280,040 KB
testcase_01 AC 258 ms
280,064 KB
testcase_02 AC 404 ms
280,064 KB
testcase_03 AC 280 ms
280,064 KB
testcase_04 AC 263 ms
280,064 KB
testcase_05 AC 266 ms
279,936 KB
testcase_06 AC 341 ms
279,936 KB
testcase_07 AC 264 ms
280,064 KB
testcase_08 AC 319 ms
279,936 KB
testcase_09 AC 269 ms
279,936 KB
testcase_10 AC 278 ms
280,064 KB
testcase_11 AC 283 ms
280,064 KB
testcase_12 AC 287 ms
280,064 KB
testcase_13 AC 275 ms
279,936 KB
testcase_14 AC 285 ms
279,936 KB
testcase_15 AC 266 ms
280,064 KB
testcase_16 AC 270 ms
279,936 KB
testcase_17 AC 267 ms
280,064 KB
testcase_18 AC 264 ms
280,064 KB
testcase_19 AC 265 ms
279,936 KB
testcase_20 AC 331 ms
280,064 KB
testcase_21 AC 384 ms
279,936 KB
testcase_22 AC 357 ms
280,064 KB
testcase_23 AC 338 ms
279,936 KB
testcase_24 AC 378 ms
280,064 KB
testcase_25 AC 296 ms
279,936 KB
testcase_26 AC 378 ms
279,936 KB
testcase_27 AC 388 ms
279,936 KB
testcase_28 AC 273 ms
280,064 KB
testcase_29 AC 368 ms
280,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int N=81000005;
int cnt[N];

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    int x; cin >> x;
    ll res=0;
    for(int d=0; d<=300; ++d){
        // add c=d
        for(int a=0; a<=d; ++a) for(int b=a; b<=d; ++b) cnt[a*a*a+b*b*b+d*d*d]++;
        for(int e=d; e<=300; ++e) for(int f=e; f<=300; ++f){
            int y=x-d*d*d-e*e*e-f*f*f;
            if(y>=0&&y<N) res+=cnt[y];
        }
    }
    cout << res << "\n";
}
0