結果
問題 | No.1742 Binary Indexed Train |
ユーザー | Shirotsume |
提出日時 | 2021-11-09 22:44:34 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 1,579,108 KB |
最終ジャッジ日時 | 2024-11-25 11:20:55 |
合計ジャッジ時間 | 87,666 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,964 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 53 ms
63,488 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | AC | 133 ms
78,368 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 179 ms
78,992 KB |
testcase_14 | AC | 165 ms
79,240 KB |
testcase_15 | MLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 207 ms
120,896 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 818 ms
306,676 KB |
testcase_24 | AC | 327 ms
170,064 KB |
testcase_25 | TLE | - |
testcase_26 | MLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 516 ms
258,448 KB |
testcase_29 | TLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | AC | 1,875 ms
493,024 KB |
testcase_34 | MLE | - |
ソースコード
from functools import lru_cache @lru_cache(maxsize=None) def solve(S,T,l,r): if T<=l or r<=S: return 0 elif S<=l and r<=T: return 1 else: m=(l+r)>>1 x=solve(S,T,l,m) y=solve(S,T,m,r) return x+y N,Q=map(int,input().split()) Max=1<<N Ans=[0]*Q for quest in range(Q): S,T=map(int,input().split()) Ans[quest]=solve(S,T,0,Max) print("\n".join(map(str,Ans)))