結果

問題 No.2510 Six Cube Sum Counting
ユーザー 沙耶花沙耶花
提出日時 2023-10-20 22:18:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 426 ms / 4,000 ms
コード長 763 bytes
コンパイル時間 4,352 ms
コンパイル使用メモリ 262,180 KB
実行使用メモリ 283,872 KB
最終ジャッジ日時 2024-09-20 19:39:37
合計ジャッジ時間 12,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
279,936 KB
testcase_01 AC 197 ms
279,936 KB
testcase_02 AC 363 ms
280,064 KB
testcase_03 AC 130 ms
280,284 KB
testcase_04 AC 130 ms
279,992 KB
testcase_05 AC 131 ms
279,992 KB
testcase_06 AC 262 ms
279,936 KB
testcase_07 AC 131 ms
279,808 KB
testcase_08 AC 238 ms
279,936 KB
testcase_09 AC 133 ms
279,964 KB
testcase_10 AC 155 ms
279,960 KB
testcase_11 AC 164 ms
280,072 KB
testcase_12 AC 168 ms
280,000 KB
testcase_13 AC 144 ms
279,960 KB
testcase_14 AC 239 ms
279,936 KB
testcase_15 AC 140 ms
279,936 KB
testcase_16 AC 136 ms
279,936 KB
testcase_17 AC 135 ms
283,872 KB
testcase_18 AC 147 ms
280,008 KB
testcase_19 AC 206 ms
280,052 KB
testcase_20 AC 319 ms
279,936 KB
testcase_21 AC 426 ms
279,936 KB
testcase_22 AC 358 ms
279,936 KB
testcase_23 AC 326 ms
280,064 KB
testcase_24 AC 404 ms
280,724 KB
testcase_25 AC 248 ms
279,956 KB
testcase_26 AC 389 ms
279,900 KB
testcase_27 AC 425 ms
280,092 KB
testcase_28 AC 202 ms
279,996 KB
testcase_29 AC 384 ms
279,936 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

int cmp[81000005];

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;
	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(X-v>=0&&X-v<81000005)ans += cmp[X-v];
				
			}
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0