結果

問題 No.2510 Six Cube Sum Counting
ユーザー maksimmaksim
提出日時 2023-10-20 22:58:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 406 ms / 4,000 ms
コード長 703 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 166,144 KB
実行使用メモリ 280,192 KB
最終ジャッジ日時 2024-09-20 21:19:36
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
280,064 KB
testcase_01 AC 284 ms
279,936 KB
testcase_02 AC 370 ms
279,936 KB
testcase_03 AC 289 ms
279,936 KB
testcase_04 AC 284 ms
280,064 KB
testcase_05 AC 284 ms
280,064 KB
testcase_06 AC 372 ms
279,936 KB
testcase_07 AC 284 ms
280,064 KB
testcase_08 AC 333 ms
279,932 KB
testcase_09 AC 287 ms
280,064 KB
testcase_10 AC 296 ms
279,972 KB
testcase_11 AC 299 ms
280,020 KB
testcase_12 AC 305 ms
279,836 KB
testcase_13 AC 294 ms
280,188 KB
testcase_14 AC 303 ms
279,896 KB
testcase_15 AC 279 ms
280,064 KB
testcase_16 AC 281 ms
280,064 KB
testcase_17 AC 276 ms
279,936 KB
testcase_18 AC 275 ms
280,064 KB
testcase_19 AC 276 ms
280,064 KB
testcase_20 AC 314 ms
280,064 KB
testcase_21 AC 358 ms
280,192 KB
testcase_22 AC 338 ms
279,936 KB
testcase_23 AC 333 ms
280,192 KB
testcase_24 AC 352 ms
280,064 KB
testcase_25 AC 305 ms
279,904 KB
testcase_26 AC 406 ms
279,936 KB
testcase_27 AC 373 ms
279,936 KB
testcase_28 AC 283 ms
280,192 KB
testcase_29 AC 352 ms
280,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
int32_t cnt[81000001];
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int res=0;
    int x;cin>>x;
    for(int c=300;c>=0;--c)
    {
        for(int e=300;e>=c;--e)
        {
            for(int f=300;f>=e;--f)
            {
                cnt[c*c*c+e*e*e+f*f*f]++;
            }
        }
        for(int b=c;b>=0;--b)
        {
            for(int a=b;a>=0;--a)
            {
                int rem=x-a*a*a-b*b*b-c*c*c;
                if(rem>=0 && rem<81000001)
                {
                    res+=cnt[rem];
                }
            }
        }
    }
    cout<<res;
    return 0;
}
0