結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 KA37RIKA37RI
提出日時 2023-09-22 19:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,231 ms / 4,000 ms
コード長 565 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 388,604 KB
最終ジャッジ日時 2024-09-19 12:49:05
合計ジャッジ時間 92,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,947 ms
388,092 KB
testcase_01 AC 2,909 ms
388,168 KB
testcase_02 AC 3,007 ms
388,344 KB
testcase_03 AC 2,853 ms
388,344 KB
testcase_04 AC 2,929 ms
388,220 KB
testcase_05 AC 2,916 ms
388,088 KB
testcase_06 AC 2,894 ms
388,092 KB
testcase_07 AC 2,937 ms
388,276 KB
testcase_08 AC 2,828 ms
388,344 KB
testcase_09 AC 2,975 ms
388,040 KB
testcase_10 AC 2,891 ms
388,348 KB
testcase_11 AC 2,896 ms
388,348 KB
testcase_12 AC 2,895 ms
388,088 KB
testcase_13 AC 2,916 ms
388,340 KB
testcase_14 AC 2,983 ms
388,092 KB
testcase_15 AC 2,896 ms
388,344 KB
testcase_16 AC 2,895 ms
388,088 KB
testcase_17 AC 2,896 ms
388,088 KB
testcase_18 AC 2,885 ms
388,344 KB
testcase_19 AC 2,914 ms
387,964 KB
testcase_20 AC 3,033 ms
388,088 KB
testcase_21 AC 3,083 ms
388,088 KB
testcase_22 AC 3,118 ms
388,348 KB
testcase_23 AC 3,039 ms
388,220 KB
testcase_24 AC 3,018 ms
388,352 KB
testcase_25 AC 2,907 ms
388,604 KB
testcase_26 AC 2,920 ms
388,348 KB
testcase_27 AC 3,050 ms
388,092 KB
testcase_28 AC 2,977 ms
388,220 KB
testcase_29 AC 3,231 ms
388,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
cubes = {}
for a in range(301):
	a3 = a * a * a
	for b in range(a, 301):
		b3 = b * b * b
		for c in range(b, 301):
			c3 = c * c * c
			x = a3 + b3 + c3
			if x not in cubes:
				cubes[x] = 0
			cubes[x] <<= 9
			cubes[x] |= c
for d in range(301):
	d3 = d * d * d
	for e in range(d, 301):
		e3 = e * e * e
		for f in range(e, 301):
			f3 = f * f * f
			x = d3 + e3 + f3
			z = n - x
			if z in cubes:
				zero = True
				w = cubes[z]
				while w > 0 or zero:
					if w & 0x1ff <= d:
						ans += 1
					w >>= 9
					zero = False
print(ans)
0