結果

問題 No.2510 Six Cube Sum Counting
ユーザー amentorimaru
提出日時 2023-09-22 19:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,804 ms / 4,000 ms
コード長 580 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 393,552 KB
最終ジャッジ日時 2024-09-19 12:47:32
合計ジャッジ時間 20,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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
			y = (a << 18) | (b << 9) | c
			if x not in cubes:
				cubes[x] = 0
			cubes[x] <<= 27
			cubes[x] |= y
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 == 0:
				ans+=1
			elif z in cubes:
				w = cubes[z]
				while w:
					if w & 0x1ff <= d:
						ans += 1
					w >>= 27
print(ans)
0