結果

問題 No.2510 Six Cube Sum Counting
ユーザー ゼットゼット
提出日時 2023-10-23 18:50:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,888 ms / 4,000 ms
コード長 715 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 292,116 KB
最終ジャッジ日時 2024-09-22 12:37:50
合計ジャッジ時間 50,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
76,108 KB
testcase_01 AC 243 ms
75,972 KB
testcase_02 AC 2,671 ms
282,276 KB
testcase_03 AC 177 ms
71,248 KB
testcase_04 AC 211 ms
75,820 KB
testcase_05 AC 226 ms
75,764 KB
testcase_06 AC 2,086 ms
265,596 KB
testcase_07 AC 2,132 ms
265,628 KB
testcase_08 AC 2,085 ms
265,124 KB
testcase_09 AC 1,477 ms
265,496 KB
testcase_10 AC 1,506 ms
266,344 KB
testcase_11 AC 2,124 ms
265,620 KB
testcase_12 AC 2,109 ms
265,924 KB
testcase_13 AC 2,030 ms
266,280 KB
testcase_14 AC 2,056 ms
266,348 KB
testcase_15 AC 232 ms
71,340 KB
testcase_16 AC 167 ms
71,080 KB
testcase_17 AC 147 ms
69,892 KB
testcase_18 AC 1,501 ms
267,284 KB
testcase_19 AC 1,514 ms
265,200 KB
testcase_20 AC 2,292 ms
254,696 KB
testcase_21 AC 2,669 ms
280,352 KB
testcase_22 AC 2,888 ms
270,928 KB
testcase_23 AC 2,333 ms
255,616 KB
testcase_24 AC 2,645 ms
281,924 KB
testcase_25 AC 2,083 ms
266,868 KB
testcase_26 AC 2,074 ms
266,224 KB
testcase_27 AC 2,314 ms
292,116 KB
testcase_28 AC 1,497 ms
266,412 KB
testcase_29 AC 2,648 ms
278,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=[]
N=int(input())
A=set()
for d in range(0,301):
  for e in range(d,301):
    for f in range(e,301):
      u=d**3+e**3+f**3
      if u>N:
        continue
      A.add(u)
for d in range(0,301):
  for e in range(d,301):
    for f in range(e,301):
      u=d**3+e**3+f**3
      x=N-u
      if not x in A:
        continue
      L.append(1000*u+d)
L.sort()
from bisect import bisect_right
result=0
L.sort()
if len(L)==0:
  print(0)
  exit()
z=L[-1]
for a in range(0,301):
  for b in range(a,301):
    for c in range(b,301):
      x=N-(a**3+b**3+c**3)
      if not x in A:
        continue
      u=x*1000+c      
      pos1=bisect_right(L,x*1000+400)
      pos2=bisect_right(L,u-1)
      result+=pos1-pos2
print(result)
0