結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-09-22 19:28:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,596 ms / 4,000 ms
コード長 678 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 393,452 KB
最終ジャッジ日時 2024-09-19 12:50:40
合計ジャッジ時間 19,635 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,061 ms
393,192 KB
testcase_01 AC 3,097 ms
392,936 KB
testcase_02 AC 3,267 ms
392,936 KB
testcase_03 AC 3,395 ms
393,068 KB
testcase_04 AC 75 ms
52,096 KB
testcase_05 AC 3,596 ms
392,936 KB
testcase_06 AC 3,067 ms
393,188 KB
testcase_07 AC 3,071 ms
393,196 KB
testcase_08 AC 3,115 ms
393,188 KB
testcase_09 AC 3,119 ms
393,196 KB
testcase_10 AC 3,135 ms
392,936 KB
testcase_11 AC 3,108 ms
393,196 KB
testcase_12 AC 3,089 ms
392,940 KB
testcase_13 AC 3,115 ms
392,940 KB
testcase_14 AC 3,087 ms
393,192 KB
testcase_15 AC 3,113 ms
393,192 KB
testcase_16 AC 3,074 ms
393,196 KB
testcase_17 AC 3,039 ms
392,940 KB
testcase_18 AC 3,124 ms
393,064 KB
testcase_19 AC 3,035 ms
393,452 KB
testcase_20 AC 3,065 ms
392,940 KB
testcase_21 AC 3,220 ms
393,192 KB
testcase_22 AC 3,248 ms
393,192 KB
testcase_23 AC 3,123 ms
392,872 KB
testcase_24 AC 3,118 ms
393,192 KB
testcase_25 AC 2,992 ms
393,068 KB
testcase_26 AC 3,051 ms
393,192 KB
testcase_27 AC 3,091 ms
393,448 KB
testcase_28 AC 3,019 ms
393,448 KB
testcase_29 AC 3,239 ms
393,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n = int(input())
if n==0:
    print(1)
    exit()
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 in cubes:
				w = cubes[z]
				while w:
					if w & 0x1ff <= d:
						ans += 1
					w >>= 27
					
w = cubes.get(n,0)
while w:
	ans += 1
	w >>= 27
print(ans)
0