結果

問題 No.2510 Six Cube Sum Counting
ユーザー timitimi
提出日時 2024-02-13 11:13:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,092 ms / 4,000 ms
コード長 327 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 441,144 KB
最終ジャッジ日時 2024-09-28 18:20:24
合計ジャッジ時間 62,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,961 ms
396,776 KB
testcase_01 AC 1,987 ms
396,996 KB
testcase_02 AC 1,995 ms
440,812 KB
testcase_03 AC 1,949 ms
396,900 KB
testcase_04 AC 2,043 ms
396,880 KB
testcase_05 AC 1,990 ms
396,892 KB
testcase_06 AC 2,010 ms
397,084 KB
testcase_07 AC 2,025 ms
397,252 KB
testcase_08 AC 2,034 ms
396,828 KB
testcase_09 AC 1,996 ms
397,000 KB
testcase_10 AC 1,963 ms
396,764 KB
testcase_11 AC 1,987 ms
397,004 KB
testcase_12 AC 2,015 ms
396,980 KB
testcase_13 AC 1,943 ms
396,864 KB
testcase_14 AC 1,953 ms
396,780 KB
testcase_15 AC 1,942 ms
396,996 KB
testcase_16 AC 1,898 ms
396,708 KB
testcase_17 AC 1,910 ms
396,796 KB
testcase_18 AC 1,888 ms
396,932 KB
testcase_19 AC 1,915 ms
396,784 KB
testcase_20 AC 2,031 ms
440,968 KB
testcase_21 AC 2,032 ms
440,816 KB
testcase_22 AC 2,026 ms
440,944 KB
testcase_23 AC 2,058 ms
440,792 KB
testcase_24 AC 2,053 ms
440,684 KB
testcase_25 AC 2,092 ms
396,932 KB
testcase_26 AC 1,953 ms
396,880 KB
testcase_27 AC 1,942 ms
441,144 KB
testcase_28 AC 1,922 ms
396,888 KB
testcase_29 AC 1,926 ms
440,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
D={};N=300;ans=0
A=[i**3 for i in range(N+1)]
for d in range(N+1):
  for b in range(d+1):
    for a in range(b+1):
      p=A[a]+A[b]+A[d]
      if p not in D:
        D[p]=0
      D[p]+=1
  for e in range(d,N+1):
    for f in range(e,N+1):
      p=X-(A[d]+A[e]+A[f])
      if p in D:
        ans+=D[p]
print(ans)
0