結果

問題 No.2510 Six Cube Sum Counting
ユーザー momoyuumomoyuu
提出日時 2023-10-28 13:33:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,254 ms / 4,000 ms
コード長 845 bytes
コンパイル時間 3,130 ms
コンパイル使用メモリ 254,096 KB
実行使用メモリ 297,920 KB
最終ジャッジ日時 2024-09-25 16:24:19
合計ジャッジ時間 37,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,007 ms
297,772 KB
testcase_01 AC 987 ms
297,732 KB
testcase_02 AC 1,220 ms
297,728 KB
testcase_03 AC 991 ms
297,860 KB
testcase_04 AC 1,011 ms
297,848 KB
testcase_05 AC 994 ms
297,896 KB
testcase_06 AC 1,010 ms
297,828 KB
testcase_07 AC 1,022 ms
297,776 KB
testcase_08 AC 1,002 ms
297,912 KB
testcase_09 AC 989 ms
297,720 KB
testcase_10 AC 971 ms
297,876 KB
testcase_11 AC 1,013 ms
297,744 KB
testcase_12 AC 1,013 ms
297,904 KB
testcase_13 AC 979 ms
297,840 KB
testcase_14 AC 984 ms
297,860 KB
testcase_15 AC 1,015 ms
297,760 KB
testcase_16 AC 1,004 ms
297,732 KB
testcase_17 AC 1,026 ms
297,768 KB
testcase_18 AC 1,005 ms
297,728 KB
testcase_19 AC 1,029 ms
297,608 KB
testcase_20 AC 1,171 ms
297,792 KB
testcase_21 AC 1,234 ms
297,728 KB
testcase_22 AC 1,234 ms
297,728 KB
testcase_23 AC 1,223 ms
297,716 KB
testcase_24 AC 1,243 ms
297,728 KB
testcase_25 AC 978 ms
297,772 KB
testcase_26 AC 1,098 ms
297,856 KB
testcase_27 AC 1,233 ms
297,920 KB
testcase_28 AC 1,006 ms
297,732 KB
testcase_29 AC 1,254 ms
297,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


const int mx = 3e7;
ll cnt[mx];
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;
                if(now<mx) cnt[now]++;
                else 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(x-now<0) continue;
                if(x-now<mx) ans += cnt[x-now];
                else if(memo.find(x-now)!=memo.end()) ans += memo[x-now];
            }
        }
    }
    cout<<ans<<endl;
}
0