結果

問題 No.2510 Six Cube Sum Counting
ユーザー titiatitia
提出日時 2023-10-26 01:07:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,278 ms / 4,000 ms
コード長 722 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 245,512 KB
最終ジャッジ日時 2024-09-25 09:08:35
合計ジャッジ時間 41,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
65,368 KB
testcase_01 AC 79 ms
65,744 KB
testcase_02 AC 2,278 ms
239,156 KB
testcase_03 AC 92 ms
71,684 KB
testcase_04 AC 75 ms
65,072 KB
testcase_05 AC 76 ms
64,896 KB
testcase_06 AC 1,767 ms
238,460 KB
testcase_07 AC 1,498 ms
238,460 KB
testcase_08 AC 1,652 ms
239,548 KB
testcase_09 AC 1,541 ms
238,928 KB
testcase_10 AC 1,530 ms
239,836 KB
testcase_11 AC 1,600 ms
238,744 KB
testcase_12 AC 1,635 ms
238,740 KB
testcase_13 AC 1,505 ms
238,400 KB
testcase_14 AC 1,497 ms
239,232 KB
testcase_15 AC 83 ms
68,004 KB
testcase_16 AC 85 ms
68,872 KB
testcase_17 AC 75 ms
64,996 KB
testcase_18 AC 1,480 ms
238,568 KB
testcase_19 AC 1,474 ms
238,260 KB
testcase_20 AC 1,527 ms
240,520 KB
testcase_21 AC 2,204 ms
239,344 KB
testcase_22 AC 2,075 ms
239,908 KB
testcase_23 AC 1,779 ms
240,808 KB
testcase_24 AC 2,234 ms
245,512 KB
testcase_25 AC 1,546 ms
238,264 KB
testcase_26 AC 2,035 ms
238,472 KB
testcase_27 AC 2,235 ms
238,660 KB
testcase_28 AC 1,507 ms
238,408 KB
testcase_29 AC 2,191 ms
242,528 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)-1)

    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