結果

問題 No.2510 Six Cube Sum Counting
ユーザー 沙耶花沙耶花
提出日時 2023-10-20 22:17:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,055 ms / 4,000 ms
コード長 781 bytes
コンパイル時間 3,999 ms
コンパイル使用メモリ 266,596 KB
実行使用メモリ 190,848 KB
最終ジャッジ日時 2024-09-20 19:42:19
合計ジャッジ時間 90,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,780 ms
190,848 KB
testcase_01 AC 2,617 ms
190,848 KB
testcase_02 AC 2,912 ms
190,848 KB
testcase_03 AC 3,055 ms
190,720 KB
testcase_04 AC 2,722 ms
190,848 KB
testcase_05 AC 2,659 ms
190,720 KB
testcase_06 AC 2,890 ms
190,848 KB
testcase_07 AC 2,688 ms
190,848 KB
testcase_08 AC 2,616 ms
190,848 KB
testcase_09 AC 2,671 ms
190,848 KB
testcase_10 AC 2,744 ms
190,848 KB
testcase_11 AC 2,703 ms
190,848 KB
testcase_12 AC 2,607 ms
190,848 KB
testcase_13 AC 2,790 ms
190,848 KB
testcase_14 AC 2,651 ms
190,720 KB
testcase_15 AC 2,755 ms
190,720 KB
testcase_16 AC 2,592 ms
190,848 KB
testcase_17 AC 2,720 ms
190,720 KB
testcase_18 AC 2,611 ms
190,720 KB
testcase_19 AC 2,643 ms
190,848 KB
testcase_20 AC 2,761 ms
190,720 KB
testcase_21 AC 2,868 ms
190,848 KB
testcase_22 AC 2,817 ms
190,848 KB
testcase_23 AC 2,767 ms
190,848 KB
testcase_24 AC 2,904 ms
190,720 KB
testcase_25 AC 2,685 ms
190,720 KB
testcase_26 AC 2,706 ms
190,848 KB
testcase_27 AC 2,790 ms
190,720 KB
testcase_28 AC 2,833 ms
190,720 KB
testcase_29 AC 2,866 ms
190,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001

//map<int,int> mp[305];

int main(){
	
	long long ans = 0;
	/*
	for(int i=0;i<=300;i++){
		for(int j=i;j<=300;j++){
			for(int k=j;k<=300;k++){
				mp[k][i*i*i+j*j*j+k*k*k]++;
			}
		}
	}
	*/
	long long X;
	cin>>X;
	map<int,int> cmp;
	for(int i=0;i<=300;i++){
		
		for(int j=i;j>=0;j--){
			for(int k=j;k>=0;k--){
				cmp[i*i*i+j*j*j+k*k*k]++;
			}
		}
		
		for(int j=i;j<=300;j++){
			for(int k=j;k<=300;k++){
				int v = i*i*i+j*j*j+k*k*k;
				if(cmp.count(X-v))ans += cmp[X-v];
				
			}
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0