結果

問題 No.2510 Six Cube Sum Counting
ユーザー sgfcsgfc
提出日時 2023-10-20 23:59:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,010 ms / 4,000 ms
コード長 679 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 248,876 KB
実行使用メモリ 174,900 KB
最終ジャッジ日時 2024-09-21 00:22:50
合計ジャッジ時間 94,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,971 ms
174,768 KB
testcase_01 AC 3,010 ms
174,768 KB
testcase_02 AC 2,897 ms
174,732 KB
testcase_03 AC 2,908 ms
174,772 KB
testcase_04 AC 2,926 ms
174,776 KB
testcase_05 AC 2,957 ms
174,772 KB
testcase_06 AC 2,964 ms
174,772 KB
testcase_07 AC 2,911 ms
174,772 KB
testcase_08 AC 2,871 ms
174,688 KB
testcase_09 AC 2,809 ms
174,772 KB
testcase_10 AC 2,928 ms
174,768 KB
testcase_11 AC 2,946 ms
174,772 KB
testcase_12 AC 2,903 ms
174,900 KB
testcase_13 AC 2,893 ms
174,772 KB
testcase_14 AC 2,890 ms
174,808 KB
testcase_15 AC 2,864 ms
174,772 KB
testcase_16 AC 2,885 ms
174,772 KB
testcase_17 AC 2,848 ms
174,776 KB
testcase_18 AC 2,930 ms
174,772 KB
testcase_19 AC 2,931 ms
174,768 KB
testcase_20 AC 2,900 ms
174,772 KB
testcase_21 AC 2,916 ms
174,772 KB
testcase_22 AC 2,963 ms
174,644 KB
testcase_23 AC 2,901 ms
174,644 KB
testcase_24 AC 3,001 ms
174,576 KB
testcase_25 AC 2,895 ms
174,772 KB
testcase_26 AC 2,945 ms
174,896 KB
testcase_27 AC 2,932 ms
174,772 KB
testcase_28 AC 2,891 ms
174,772 KB
testcase_29 AC 2,896 ms
174,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include <unordered_map>
#include <unordered_set>


using namespace std;
int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int x;
	cin >> x;


	unordered_map<int, int> mp;

	int ans = 0;
	for (int d = 0; d < 301; ++d) {
		int c3 = d*d*d;
		for (int b = 0; b < d + 1; ++b) {
			int b3 = b * b * b;
			for (int a = 0; a < b + 1; ++a) {
				int tx = a * a * a + b3 + c3;
				mp[tx]++;
			}
		}

		int d3 = c3;
		for (int e = d; e < 301; ++e) {
			int e3 = e * e * e;
			for (int f = e; f < 301; ++f) {
				const int t = x - (d3 + e3 + f * f * f);
				if (mp.find(t) == mp.end()) continue;
				ans += mp[t];
			}
		}
	}

	cout << ans << endl;
}
0