結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 KA37RIKA37RI
提出日時 2023-09-22 19:12:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 393,548 KB
最終ジャッジ日時 2024-09-19 12:46:10
合計ジャッジ時間 82,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,527 ms
392,740 KB
testcase_01 AC 2,585 ms
392,796 KB
testcase_02 AC 2,706 ms
392,580 KB
testcase_03 AC 2,592 ms
392,860 KB
testcase_04 WA -
testcase_05 AC 2,542 ms
392,772 KB
testcase_06 AC 2,590 ms
392,732 KB
testcase_07 AC 2,616 ms
392,672 KB
testcase_08 AC 2,539 ms
393,008 KB
testcase_09 AC 2,598 ms
392,852 KB
testcase_10 AC 2,568 ms
392,800 KB
testcase_11 AC 2,568 ms
392,848 KB
testcase_12 AC 2,600 ms
392,916 KB
testcase_13 AC 2,604 ms
392,776 KB
testcase_14 AC 2,584 ms
392,800 KB
testcase_15 AC 2,568 ms
393,128 KB
testcase_16 AC 2,606 ms
393,008 KB
testcase_17 AC 2,583 ms
393,020 KB
testcase_18 AC 2,574 ms
392,856 KB
testcase_19 AC 2,529 ms
392,712 KB
testcase_20 AC 2,706 ms
392,800 KB
testcase_21 AC 2,785 ms
392,876 KB
testcase_22 WA -
testcase_23 AC 2,697 ms
393,212 KB
testcase_24 AC 2,697 ms
392,832 KB
testcase_25 AC 2,561 ms
392,804 KB
testcase_26 AC 2,588 ms
392,924 KB
testcase_27 AC 2,659 ms
392,852 KB
testcase_28 AC 2,529 ms
392,844 KB
testcase_29 AC 2,732 ms
392,760 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 in cubes:
				w = cubes[z]
				while w:
					if w & 0x1ff <= d:
						ans += 1
					w >>= 27
print(ans)
0