結果

問題 No.2510 Six Cube Sum Counting
ユーザー momoyuumomoyuu
提出日時 2023-10-28 13:30:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 678 bytes
コンパイル時間 2,919 ms
コンパイル使用メモリ 252,756 KB
実行使用メモリ 253,440 KB
最終ジャッジ日時 2024-09-25 16:23:34
合計ジャッジ時間 12,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,885 ms
253,440 KB
testcase_01 AC 3,830 ms
253,440 KB
testcase_02 TLE -
testcase_03 AC 3,805 ms
253,184 KB
testcase_04 AC 3,869 ms
253,184 KB
testcase_05 AC 3,793 ms
253,312 KB
testcase_06 AC 3,881 ms
253,184 KB
testcase_07 AC 3,833 ms
253,312 KB
testcase_08 AC 3,907 ms
253,312 KB
testcase_09 AC 3,902 ms
253,184 KB
testcase_10 TLE -
testcase_11 AC 3,912 ms
253,312 KB
testcase_12 AC 3,852 ms
253,312 KB
testcase_13 AC 3,886 ms
253,312 KB
testcase_14 AC 3,847 ms
253,184 KB
testcase_15 AC 3,869 ms
253,312 KB
testcase_16 AC 3,856 ms
253,184 KB
testcase_17 AC 3,823 ms
253,184 KB
testcase_18 AC 3,839 ms
253,440 KB
testcase_19 AC 3,884 ms
253,184 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 3,930 ms
253,184 KB
testcase_26 AC 3,934 ms
253,312 KB
testcase_27 TLE -
testcase_28 AC 3,948 ms
253,312 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){ 
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
       
    ll ans = 0;
    int x;
    cin>>x;
    map<int,ll> memo;

    for(int i = 0;i<=300;i++){
        for(int b = 0;b<=i;b++){
            for(int a = 0;a<=b;a++){
                int now = a * a * a + b * b * b + i * i * i;
                memo[now]++;
            }
        }
        for(int e = i;e<=300;e++){
            for(int f = e;f<=300;f++){
                int now = e * e * e + f * f * f + i * i * i;
                if(memo.find(x-now)!=memo.end()) ans += memo[x-now];
            }
        }
    }
    cout<<ans<<endl;
}
0