結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-09-22 20:01:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,405 ms / 4,000 ms
コード長 573 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 392,628 KB
最終ジャッジ日時 2024-09-19 12:53:44
合計ジャッジ時間 68,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,204 ms
392,124 KB
testcase_01 AC 2,211 ms
391,792 KB
testcase_02 AC 2,371 ms
392,400 KB
testcase_03 AC 2,231 ms
391,624 KB
testcase_04 AC 32 ms
52,704 KB
testcase_05 AC 2,142 ms
391,796 KB
testcase_06 AC 2,174 ms
391,960 KB
testcase_07 AC 2,147 ms
391,660 KB
testcase_08 AC 2,173 ms
391,876 KB
testcase_09 AC 2,166 ms
391,884 KB
testcase_10 AC 2,176 ms
391,600 KB
testcase_11 AC 2,136 ms
391,560 KB
testcase_12 AC 2,213 ms
391,652 KB
testcase_13 AC 2,261 ms
391,604 KB
testcase_14 AC 2,221 ms
391,580 KB
testcase_15 AC 2,225 ms
391,584 KB
testcase_16 AC 2,213 ms
391,476 KB
testcase_17 AC 2,230 ms
391,828 KB
testcase_18 AC 2,232 ms
391,784 KB
testcase_19 AC 2,212 ms
391,500 KB
testcase_20 AC 2,275 ms
391,988 KB
testcase_21 AC 2,324 ms
392,280 KB
testcase_22 AC 2,381 ms
392,588 KB
testcase_23 AC 2,345 ms
392,216 KB
testcase_24 AC 2,405 ms
392,052 KB
testcase_25 AC 2,158 ms
391,532 KB
testcase_26 AC 2,296 ms
392,148 KB
testcase_27 AC 2,286 ms
392,060 KB
testcase_28 AC 2,175 ms
391,700 KB
testcase_29 AC 2,321 ms
392,628 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
			cubes[x] = (cubes.get(x,0) << 27) | y
for x, tw in cubes.items():
	if n - x in cubes:
		w1 = tw
		while w1:
			w2 = cubes[n - x]
			while w2:
				if w2 & 0x1ff <= (w1 >> 18) & 0x1ff:
					ans += 1
				w2 >>= 27
			w1 >>= 27
					
w = cubes.get(n,0)
while w:
	ans += 1
	w >>= 27
print(ans)
0