結果
問題 |
No.2510 Six Cube Sum Counting
|
ユーザー |
👑 |
提出日時 | 2023-09-22 19:12:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 393,548 KB |
最終ジャッジ日時 | 2024-09-19 12:46:10 |
合計ジャッジ時間 | 82,471 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 24 WA * 2 |
ソースコード
n = int(input()) ans = 0 cubes = {} for a in range(301): a3 = a * a * a for b in range(a, 301): b3 = b * b * b for c in range(b, 301): c3 = c * c * c x = a3 + b3 + c3 y = (a << 18) | (b << 9) | c if x not in cubes: cubes[x] = 0 cubes[x] <<= 27 cubes[x] |= y for d in range(301): d3 = d * d * d for e in range(d, 301): e3 = e * e * e for f in range(e, 301): f3 = f * f * f x = d3 + e3 + f3 z = n - x if z in cubes: w = cubes[z] while w: if w & 0x1ff <= d: ans += 1 w >>= 27 print(ans)