結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 38 ms
58,240 KB
testcase_04 AC 36 ms
57,344 KB
testcase_05 AC 38 ms
58,368 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 38 ms
58,496 KB
testcase_10 AC 40 ms
57,600 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 AC 178 ms
106,296 KB
testcase_14 AC 157 ms
111,728 KB
testcase_15 AC 153 ms
106,112 KB
testcase_16 AC 176 ms
112,372 KB
testcase_17 AC 174 ms
112,112 KB
testcase_18 AC 177 ms
112,176 KB
testcase_19 AC 161 ms
111,460 KB
testcase_20 AC 174 ms
106,052 KB
testcase_21 AC 170 ms
111,448 KB
testcase_22 AC 170 ms
110,344 KB
testcase_23 AC 158 ms
102,024 KB
testcase_24 AC 155 ms
97,760 KB
testcase_25 AC 113 ms
93,116 KB
testcase_26 AC 101 ms
87,168 KB
testcase_27 AC 74 ms
76,288 KB
testcase_28 AC 61 ms
69,248 KB
testcase_29 AC 48 ms
64,384 KB
testcase_30 AC 48 ms
62,208 KB
testcase_31 AC 42 ms
59,264 KB
testcase_32 AC 36 ms
52,224 KB
testcase_33 AC 42 ms
60,544 KB
testcase_34 AC 38 ms
57,344 KB
testcase_35 AC 40 ms
58,496 KB
testcase_36 AC 37 ms
52,736 KB
testcase_37 AC 41 ms
58,240 KB
testcase_38 AC 171 ms
112,164 KB
testcase_39 AC 179 ms
106,888 KB
testcase_40 AC 46 ms
64,128 KB
testcase_41 AC 162 ms
111,616 KB
testcase_42 AC 123 ms
97,664 KB
testcase_43 AC 159 ms
111,680 KB
testcase_44 AC 184 ms
106,168 KB
testcase_45 AC 172 ms
112,056 KB
testcase_46 AC 175 ms
112,464 KB
testcase_47 AC 151 ms
106,324 KB
testcase_48 AC 177 ms
110,104 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(60,-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