結果

問題 No.2510 Six Cube Sum Counting
ユーザー ゼットゼット
提出日時 2023-10-23 18:44:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 535 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 228,504 KB
最終ジャッジ日時 2024-09-22 12:32:34
合計ジャッジ時間 48,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
71,212 KB
testcase_01 AC 124 ms
73,044 KB
testcase_02 TLE -
testcase_03 AC 139 ms
76,344 KB
testcase_04 AC 116 ms
71,564 KB
testcase_05 AC 115 ms
71,656 KB
testcase_06 AC 1,870 ms
83,464 KB
testcase_07 AC 831 ms
76,316 KB
testcase_08 AC 1,411 ms
79,084 KB
testcase_09 AC 953 ms
76,616 KB
testcase_10 AC 1,009 ms
76,956 KB
testcase_11 AC 1,141 ms
76,876 KB
testcase_12 AC 1,112 ms
76,896 KB
testcase_13 AC 989 ms
76,876 KB
testcase_14 AC 1,072 ms
76,736 KB
testcase_15 AC 135 ms
76,544 KB
testcase_16 AC 134 ms
76,056 KB
testcase_17 AC 116 ms
72,536 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 2,967 ms
196,520 KB
testcase_21 TLE -
testcase_22 AC 3,965 ms
228,504 KB
testcase_23 AC 3,454 ms
213,436 KB
testcase_24 TLE -
testcase_25 AC 1,114 ms
76,612 KB
testcase_26 AC 2,990 ms
103,460 KB
testcase_27 AC 3,488 ms
172,084 KB
testcase_28 AC 1,028 ms
76,784 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

L=[]
N=int(input())
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//2:
        continue
      if u>N:
        continue
      L.append(u*1000+d)
from bisect import bisect_right
result=0
L.sort()
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 x>z or x<0:
        continue
      u=x*1000+c      
      pos1=bisect_right(L,x*1000+400)
      pos2=bisect_right(L,u-1)
      result+=pos1-pos2
print(result)
0