結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 amentorimaruamentorimaru
提出日時 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
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,540 ms
393,216 KB
testcase_01 AC 2,545 ms
393,292 KB
testcase_02 AC 2,666 ms
392,928 KB
testcase_03 AC 2,542 ms
392,860 KB
testcase_04 AC 2,621 ms
393,212 KB
testcase_05 AC 2,528 ms
392,860 KB
testcase_06 AC 2,605 ms
393,488 KB
testcase_07 AC 2,586 ms
393,172 KB
testcase_08 AC 2,583 ms
392,996 KB
testcase_09 AC 2,597 ms
392,948 KB
testcase_10 AC 2,515 ms
393,552 KB
testcase_11 AC 2,562 ms
393,032 KB
testcase_12 AC 2,530 ms
393,268 KB
testcase_13 AC 2,529 ms
393,548 KB
testcase_14 AC 2,530 ms
393,172 KB
testcase_15 AC 2,569 ms
392,920 KB
testcase_16 AC 2,525 ms
393,252 KB
testcase_17 AC 2,515 ms
392,924 KB
testcase_18 AC 2,603 ms
393,284 KB
testcase_19 AC 2,541 ms
392,924 KB
testcase_20 AC 2,616 ms
393,260 KB
testcase_21 AC 2,724 ms
393,228 KB
testcase_22 AC 2,726 ms
392,992 KB
testcase_23 AC 2,729 ms
393,284 KB
testcase_24 AC 2,668 ms
393,176 KB
testcase_25 AC 2,548 ms
393,340 KB
testcase_26 AC 2,574 ms
393,172 KB
testcase_27 AC 2,650 ms
393,220 KB
testcase_28 AC 2,560 ms
393,272 KB
testcase_29 AC 2,804 ms
393,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
			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