結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | vwxyz |
提出日時 | 2024-12-19 20:08:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 551 bytes |
コンパイル時間 | 443 ms |
コンパイル使用メモリ | 82,900 KB |
実行使用メモリ | 267,600 KB |
最終ジャッジ日時 | 2024-12-19 20:09:39 |
合計ジャッジ時間 | 55,803 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | MLE | - |
ソースコード
X=int(float(input())*4) def idx(a,b,s): return (s*101+a)*101+b M=101*101*601 dp=[0]*M for x in range(101): dp[idx(x,x,x)]=1 for _ in range(5): prev=dp dp=[0]*M for a in range(101): for b in range(101): for s in range(601): for x in range(101): if prev[idx(a,b,s)]: dp[idx(min(a,x),max(b,x),s+x)]+=1 ans=0 for a in range(101): for b in range(101): for s in range(601): if a+b+X==s: ans+=dp[idx(a,b,s)] print(ans)