結果

問題 No.911 ラッキーソート
ユーザー vwxyzvwxyz
提出日時 2021-10-14 23:44:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,042 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 112,636 KB
最終ジャッジ日時 2024-09-17 16:37:55
合計ジャッジ時間 7,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,656 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 AC 37 ms
53,780 KB
testcase_03 AC 41 ms
59,576 KB
testcase_04 AC 41 ms
58,048 KB
testcase_05 AC 41 ms
59,620 KB
testcase_06 AC 37 ms
52,344 KB
testcase_07 AC 36 ms
53,420 KB
testcase_08 AC 38 ms
52,824 KB
testcase_09 AC 40 ms
59,112 KB
testcase_10 AC 39 ms
57,904 KB
testcase_11 AC 37 ms
53,012 KB
testcase_12 AC 36 ms
53,828 KB
testcase_13 AC 155 ms
106,172 KB
testcase_14 AC 169 ms
111,728 KB
testcase_15 AC 159 ms
106,136 KB
testcase_16 AC 191 ms
112,636 KB
testcase_17 AC 188 ms
112,632 KB
testcase_18 AC 186 ms
112,412 KB
testcase_19 AC 179 ms
111,712 KB
testcase_20 AC 174 ms
106,184 KB
testcase_21 AC 191 ms
111,556 KB
testcase_22 AC 191 ms
110,456 KB
testcase_23 AC 173 ms
102,148 KB
testcase_24 AC 174 ms
97,880 KB
testcase_25 AC 125 ms
93,008 KB
testcase_26 AC 109 ms
87,436 KB
testcase_27 AC 78 ms
77,416 KB
testcase_28 AC 64 ms
70,056 KB
testcase_29 AC 53 ms
64,372 KB
testcase_30 AC 49 ms
62,940 KB
testcase_31 AC 44 ms
60,644 KB
testcase_32 AC 39 ms
52,464 KB
testcase_33 AC 45 ms
59,712 KB
testcase_34 AC 41 ms
58,200 KB
testcase_35 AC 41 ms
58,660 KB
testcase_36 AC 38 ms
53,744 KB
testcase_37 AC 40 ms
58,476 KB
testcase_38 AC 182 ms
112,456 KB
testcase_39 AC 194 ms
106,496 KB
testcase_40 AC 50 ms
64,064 KB
testcase_41 AC 175 ms
111,792 KB
testcase_42 AC 131 ms
98,088 KB
testcase_43 AC 171 ms
111,824 KB
testcase_44 AC 157 ms
106,048 KB
testcase_45 AC 177 ms
111,820 KB
testcase_46 AC 178 ms
112,616 KB
testcase_47 AC 159 ms
106,116 KB
testcase_48 AC 184 ms
110,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,L,R=map(int,readline().split())
A=list(map(int,readline().split()))
bit_lst=[set() for bit in range(62)]
for i in range(1,N):
    for bit in range(61,-1,-1):
        if A[i-1]>>bit&1 and not A[i]>>bit&1:
            bit_lst[bit].add(1)
            break
        elif not A[i-1]>>bit&1 and A[i]>>bit&1:
            bit_lst[bit].add(0)
            break
for bit in range(62):
    if len(bit_lst[bit])>=2:
        ans=0
        break
else:
    for bit in range(62):
        if bit_lst[bit]=={0}:
            bit_lst[bit]=0
        elif bit_lst[bit]=={1}:
            bit_lst[bit]=1
        else:
            bit_lst[bit]=None
    def cnt(N):
        retu=0
        for bit in range(62):
            if N>>bit&1 and bit_lst[bit]!=1:
                for i in range(bit+1,62):
                    if bit_lst[i]!=None and bit_lst[i]!=N>>i&1:
                        break
                else:
                    retu+=pow(2,bit_lst[:bit].count(None))
        return retu
    ans=cnt(R+1)-cnt(L)
print(ans)
0