結果

問題 No.911 ラッキーソート
ユーザー convexineqconvexineq
提出日時 2021-04-11 17:30:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,948 KB
最終ジャッジ日時 2024-06-27 12:09:01
合計ジャッジ時間 6,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 132 ms
112,524 KB
testcase_14 AC 148 ms
117,928 KB
testcase_15 AC 141 ms
112,700 KB
testcase_16 AC 162 ms
112,012 KB
testcase_17 AC 159 ms
115,324 KB
testcase_18 AC 160 ms
114,840 KB
testcase_19 AC 151 ms
117,872 KB
testcase_20 AC 138 ms
111,896 KB
testcase_21 AC 160 ms
117,668 KB
testcase_22 AC 153 ms
116,740 KB
testcase_23 AC 137 ms
107,940 KB
testcase_24 AC 138 ms
103,208 KB
testcase_25 AC 98 ms
98,048 KB
testcase_26 AC 88 ms
90,752 KB
testcase_27 AC 63 ms
76,288 KB
testcase_28 AC 54 ms
68,608 KB
testcase_29 AC 46 ms
62,336 KB
testcase_30 AC 43 ms
59,904 KB
testcase_31 AC 42 ms
58,368 KB
testcase_32 AC 38 ms
52,736 KB
testcase_33 AC 40 ms
57,856 KB
testcase_34 AC 39 ms
51,840 KB
testcase_35 AC 40 ms
57,856 KB
testcase_36 AC 38 ms
52,864 KB
testcase_37 AC 41 ms
57,856 KB
testcase_38 AC 163 ms
115,348 KB
testcase_39 AC 161 ms
109,476 KB
testcase_40 AC 46 ms
62,464 KB
testcase_41 AC 151 ms
117,532 KB
testcase_42 AC 112 ms
95,524 KB
testcase_43 AC 151 ms
117,948 KB
testcase_44 AC 141 ms
112,520 KB
testcase_45 AC 161 ms
117,860 KB
testcase_46 AC 162 ms
117,784 KB
testcase_47 AC 136 ms
112,432 KB
testcase_48 AC 162 ms
116,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {}
def f(x,i):
    if (x,i) in d: return d[x,i]
    if x < 0: return 0
    if i==62: return 1
    c = 0
    if res[i]&1: c += f(x//2,i+1)
    if res[i]&2: c += f((x-1)//2,i+1)
    d[x,i] = c
    return c

n,L,R = map(int,input().split())
*a, = map(int,input().split())
res = [3]*62
for x,y in zip(a,a[1:]):
    for i in range(62)[::-1]:
        if x>>i&1 != y>>i&1:
            res[i] &= 1<<(x>>i&1)
            break
print(f(R,0)-f(L-1,0))
0