結果

問題 No.2510 Six Cube Sum Counting
ユーザー titiatitia
提出日時 2023-10-26 01:04:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 245,296 KB
最終ジャッジ日時 2024-09-25 09:05:10
合計ジャッジ時間 39,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
65,272 KB
testcase_01 AC 77 ms
66,688 KB
testcase_02 AC 2,221 ms
239,616 KB
testcase_03 AC 89 ms
70,588 KB
testcase_04 WA -
testcase_05 AC 75 ms
65,004 KB
testcase_06 AC 1,645 ms
238,356 KB
testcase_07 AC 1,420 ms
239,708 KB
testcase_08 AC 1,495 ms
238,228 KB
testcase_09 AC 1,424 ms
239,060 KB
testcase_10 AC 1,410 ms
238,864 KB
testcase_11 AC 1,437 ms
238,692 KB
testcase_12 AC 1,448 ms
239,520 KB
testcase_13 AC 1,415 ms
238,828 KB
testcase_14 AC 1,445 ms
238,924 KB
testcase_15 AC 81 ms
68,128 KB
testcase_16 AC 85 ms
69,708 KB
testcase_17 AC 74 ms
64,256 KB
testcase_18 AC 1,407 ms
238,884 KB
testcase_19 AC 1,395 ms
238,156 KB
testcase_20 AC 1,475 ms
240,464 KB
testcase_21 AC 2,172 ms
239,236 KB
testcase_22 AC 2,022 ms
239,916 KB
testcase_23 AC 1,714 ms
241,116 KB
testcase_24 AC 2,164 ms
245,296 KB
testcase_25 AC 1,453 ms
239,464 KB
testcase_26 AC 1,938 ms
238,632 KB
testcase_27 AC 2,210 ms
238,488 KB
testcase_28 AC 1,437 ms
238,964 KB
testcase_29 AC 2,165 ms
241,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import bisect

X=int(input())

D=dict()
ANS=0
LIST=[]
for a in range(301):
    for b in range(a,301):
        for c in range(b,301):
            S=a**3+b**3+c**3
            if S>X:
                continue
            LIST.append(S*(302*302)+a*302+c)

LIST.sort()

for p in LIST:
    c=p%302
    p//=302
    a=p%302
    S=p//302
    
    if S>X:
        continue

    k=X-S

    x=bisect(LIST,k*(302*302))

    for i in range(x,10**9):
        if i==len(LIST):
            break

        y=LIST[i]
        f=y%302
        y//=302
        d=y%302
        l=y//302

        if k==l:
            if c<=d:
                ANS+=1
        else:
            break

print(ANS)
0