結果

問題 No.911 ラッキーソート
ユーザー convexineqconvexineq
提出日時 2021-04-11 17:22:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 181,752 KB
最終ジャッジ日時 2024-06-27 12:04:15
合計ジャッジ時間 13,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
52,440 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 37 ms
52,736 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 331 ms
161,684 KB
testcase_14 AC 335 ms
151,220 KB
testcase_15 AC 341 ms
166,520 KB
testcase_16 AC 381 ms
163,856 KB
testcase_17 AC 370 ms
160,940 KB
testcase_18 AC 378 ms
163,288 KB
testcase_19 AC 374 ms
159,648 KB
testcase_20 AC 384 ms
165,480 KB
testcase_21 AC 428 ms
181,752 KB
testcase_22 AC 440 ms
175,408 KB
testcase_23 AC 433 ms
175,888 KB
testcase_24 AC 411 ms
162,660 KB
testcase_25 AC 269 ms
132,928 KB
testcase_26 AC 227 ms
98,896 KB
testcase_27 AC 138 ms
84,616 KB
testcase_28 AC 103 ms
79,208 KB
testcase_29 AC 74 ms
76,584 KB
testcase_30 AC 58 ms
67,712 KB
testcase_31 AC 49 ms
62,592 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 43 ms
59,136 KB
testcase_34 AC 38 ms
52,352 KB
testcase_35 AC 42 ms
59,264 KB
testcase_36 AC 42 ms
59,520 KB
testcase_37 AC 43 ms
59,648 KB
testcase_38 AC 364 ms
167,492 KB
testcase_39 AC 448 ms
175,664 KB
testcase_40 AC 75 ms
76,172 KB
testcase_41 AC 390 ms
160,012 KB
testcase_42 AC 298 ms
135,676 KB
testcase_43 AC 340 ms
150,016 KB
testcase_44 AC 338 ms
161,884 KB
testcase_45 AC 354 ms
154,100 KB
testcase_46 AC 372 ms
155,476 KB
testcase_47 AC 328 ms
154,032 KB
testcase_48 AC 383 ms
160,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,L,R = map(int,input().split())
*a, = map(int,input().split())
res = [3]*62
q = [a]
for i in range(62)[::-1]:
    #print(q)
    nq = []
    c = 3
    for lst in q:
        q0 = []
        q1 = []
        for x in lst:
            if x>>i&1:
                q1.append(x)
                if q0: c &= 1
            else:
                q0.append(x)
                if q1: c &= 2
        if len(q0) >= 2: nq.append(q0)
        if len(q1) >= 2: nq.append(q1)
    res[i] = c
    q = nq

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

p = f(R,0)
q = f(L-1,0)
print(p-q)
0