結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | titia |
提出日時 | 2023-10-26 01:02:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 245,064 KB |
最終ジャッジ日時 | 2024-09-25 09:02:23 |
合計ジャッジ時間 | 40,565 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
65,548 KB |
testcase_01 | AC | 78 ms
66,336 KB |
testcase_02 | WA | - |
testcase_03 | AC | 91 ms
71,648 KB |
testcase_04 | WA | - |
testcase_05 | AC | 76 ms
64,812 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1,471 ms
238,396 KB |
testcase_08 | AC | 1,587 ms
239,260 KB |
testcase_09 | AC | 1,488 ms
239,200 KB |
testcase_10 | AC | 1,553 ms
238,452 KB |
testcase_11 | AC | 1,515 ms
239,564 KB |
testcase_12 | AC | 1,499 ms
238,420 KB |
testcase_13 | AC | 1,473 ms
238,476 KB |
testcase_14 | AC | 1,483 ms
238,364 KB |
testcase_15 | AC | 87 ms
69,228 KB |
testcase_16 | AC | 84 ms
70,200 KB |
testcase_17 | AC | 76 ms
65,128 KB |
testcase_18 | AC | 1,459 ms
238,692 KB |
testcase_19 | AC | 1,461 ms
238,744 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1,495 ms
238,620 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1,476 ms
238,508 KB |
testcase_29 | WA | - |
ソースコード
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 and c<=d: ANS+=1 else: break print(ANS)