結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-09-21 19:02:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,699 ms / 4,000 ms
コード長 564 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 440,792 KB
最終ジャッジ日時 2024-09-19 12:42:06
合計ジャッジ時間 52,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,615 ms
440,412 KB
testcase_01 AC 1,660 ms
440,308 KB
testcase_02 AC 1,599 ms
440,256 KB
testcase_03 AC 1,625 ms
440,632 KB
testcase_04 AC 1,644 ms
440,232 KB
testcase_05 AC 1,699 ms
440,304 KB
testcase_06 AC 1,673 ms
440,308 KB
testcase_07 AC 1,636 ms
440,556 KB
testcase_08 AC 1,628 ms
440,560 KB
testcase_09 AC 1,644 ms
440,548 KB
testcase_10 AC 1,668 ms
440,304 KB
testcase_11 AC 1,691 ms
440,668 KB
testcase_12 AC 1,668 ms
440,428 KB
testcase_13 AC 1,616 ms
440,792 KB
testcase_14 AC 1,645 ms
440,560 KB
testcase_15 AC 1,623 ms
440,172 KB
testcase_16 AC 1,597 ms
440,184 KB
testcase_17 AC 1,646 ms
440,392 KB
testcase_18 AC 1,678 ms
440,300 KB
testcase_19 AC 1,668 ms
440,296 KB
testcase_20 AC 1,654 ms
440,660 KB
testcase_21 AC 1,639 ms
440,176 KB
testcase_22 AC 1,590 ms
440,564 KB
testcase_23 AC 1,638 ms
440,580 KB
testcase_24 AC 1,650 ms
440,428 KB
testcase_25 AC 1,618 ms
440,312 KB
testcase_26 AC 1,588 ms
440,684 KB
testcase_27 AC 1,632 ms
440,176 KB
testcase_28 AC 1,621 ms
440,428 KB
testcase_29 AC 1,660 ms
440,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    n=int(input())
    d=dict()
    ans = 0
    for m0 in range(0,301):
        m03 = m0*m0*m0
        for m1 in range(0,m0+1):
            m13 = m1*m1*m1
            for m2 in range(m1,m0+1):
                m23 = m2*m2*m2
                d[m03+m13+m23]=d.get(m03+m13+m23, 0) + 1
        for m1 in range(m0, 301):
            m13 = m1*m1*m1
            for m2 in range(m1, 301):
                m23 = m2*m2*m2
                ans+=d.get(n-m03-m13-m23, 0)
    print(ans)
    
if __name__ == "__main__":
    main()
0