結果

問題 No.2510 Six Cube Sum Counting
ユーザー daiotadaiota
提出日時 2023-10-21 09:08:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 584 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 166,160 KB
実行使用メモリ 280,192 KB
最終ジャッジ日時 2024-09-21 10:12:33
合計ジャッジ時間 11,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
279,936 KB
testcase_01 AC 263 ms
280,008 KB
testcase_02 AC 342 ms
279,964 KB
testcase_03 AC 262 ms
279,892 KB
testcase_04 AC 259 ms
279,936 KB
testcase_05 AC 260 ms
280,064 KB
testcase_06 AC 321 ms
280,064 KB
testcase_07 AC 272 ms
279,936 KB
testcase_08 AC 306 ms
280,020 KB
testcase_09 AC 267 ms
280,064 KB
testcase_10 AC 279 ms
280,044 KB
testcase_11 AC 284 ms
280,008 KB
testcase_12 AC 285 ms
280,032 KB
testcase_13 AC 276 ms
280,028 KB
testcase_14 AC 286 ms
280,048 KB
testcase_15 AC 260 ms
280,060 KB
testcase_16 AC 259 ms
279,964 KB
testcase_17 AC 263 ms
280,036 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 323 ms
280,064 KB
testcase_21 AC 348 ms
280,192 KB
testcase_22 AC 293 ms
280,064 KB
testcase_23 AC 275 ms
280,004 KB
testcase_24 AC 339 ms
280,192 KB
testcase_25 AC 266 ms
280,028 KB
testcase_26 AC 312 ms
279,936 KB
testcase_27 AC 344 ms
279,936 KB
testcase_28 AC 274 ms
279,936 KB
testcase_29 AC 323 ms
279,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


int m[6*300*300*300+10];

int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	int i,j,k;

	int X;
	cin >> X;

	int ans=0;
	for(int c=0;c<=300;c++){

		for(int b=0;b<=c;b++){
			for(int a=0;a<=b;a++){
				int s=a*a*a+b*b*b+c*c*c;
				m[s]++;
			}
		}


		for(int f=c;f<=300;f++){
			for(int e=c;e<=f;e++){
				int t=c*c*c+e*e*e+f*f*f;
				if(t>X) continue;
				ans+=m[X-t];
			}
		}

	}


	cout << ans << endl;


	return 0;
}
0