結果

問題 No.911 ラッキーソート
ユーザー shotoyooshotoyoo
提出日時 2021-07-14 22:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 112,824 KB
最終ジャッジ日時 2024-07-03 23:25:06
合計ジャッジ時間 6,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 169 ms
106,360 KB
testcase_14 AC 156 ms
111,672 KB
testcase_15 AC 136 ms
106,320 KB
testcase_16 AC 162 ms
112,428 KB
testcase_17 AC 170 ms
112,824 KB
testcase_18 AC 154 ms
112,344 KB
testcase_19 AC 155 ms
112,356 KB
testcase_20 AC 146 ms
106,488 KB
testcase_21 AC 153 ms
111,360 KB
testcase_22 AC 154 ms
111,208 KB
testcase_23 AC 140 ms
102,316 KB
testcase_24 AC 132 ms
98,932 KB
testcase_25 AC 99 ms
95,616 KB
testcase_26 AC 91 ms
89,216 KB
testcase_27 AC 68 ms
75,648 KB
testcase_28 AC 58 ms
68,864 KB
testcase_29 AC 55 ms
63,104 KB
testcase_30 AC 53 ms
61,056 KB
testcase_31 AC 45 ms
57,856 KB
testcase_32 AC 41 ms
51,840 KB
testcase_33 AC 45 ms
57,856 KB
testcase_34 AC 41 ms
52,096 KB
testcase_35 AC 43 ms
58,112 KB
testcase_36 AC 37 ms
52,736 KB
testcase_37 AC 40 ms
57,856 KB
testcase_38 AC 153 ms
112,308 KB
testcase_39 AC 154 ms
106,908 KB
testcase_40 AC 51 ms
63,360 KB
testcase_41 AC 143 ms
111,728 KB
testcase_42 AC 110 ms
95,872 KB
testcase_43 AC 146 ms
112,192 KB
testcase_44 AC 120 ms
106,740 KB
testcase_45 AC 126 ms
106,816 KB
testcase_46 AC 124 ms
107,048 KB
testcase_47 AC 115 ms
106,440 KB
testcase_48 AC 118 ms
105,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,L,R = list(map(int, input().split()))
a = list(map(int, input().split()))
l = [-1]*62
ng = 0
for i in range(1,n):
    v = a[i]
    p = a[i-1]
    for b in range(62)[::-1]:
        if (v>>b&1) == (p>>b&1):
            continue
        if v>>b&1:
            if l[b]==1:
                ng = 1
                break
            l[b] = 0
        else:
            if l[b]==0:
                ng = 1
                break
            l[b] = 1
        break
    if ng:
        break
def sub(r):
    if r<0:
        return 0
    ll = []
    v = 0
    for i in range(62)[::-1]:
        if l[i]==-1:
            if v+(1<<i)<=r:
                ll.append(1)
                v += (1<<i)
            else:
                ll.append(0)
    v = 1
    res = 0
#     print(ll[-10:])
    for b in ll[::-1]:
        res += b*v
        v *= 2
    return res + 1
if ng:
    ans = 0
else:
    val = 0
    for i in range(62):
        if l[i]==1:
            val += (1<<i)
    ans = sub(R-val) - sub(L-val-1)
print(ans)
0