結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 41 ms
57,984 KB
testcase_04 AC 39 ms
57,472 KB
testcase_05 AC 44 ms
58,240 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 42 ms
57,600 KB
testcase_10 AC 43 ms
57,856 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 197 ms
106,532 KB
testcase_14 AC 174 ms
111,508 KB
testcase_15 AC 152 ms
105,988 KB
testcase_16 AC 174 ms
112,112 KB
testcase_17 AC 175 ms
112,508 KB
testcase_18 AC 173 ms
112,424 KB
testcase_19 AC 173 ms
111,600 KB
testcase_20 AC 185 ms
106,444 KB
testcase_21 AC 174 ms
111,260 KB
testcase_22 AC 173 ms
110,472 KB
testcase_23 AC 158 ms
102,504 KB
testcase_24 AC 161 ms
97,976 KB
testcase_25 AC 114 ms
92,872 KB
testcase_26 AC 99 ms
87,308 KB
testcase_27 AC 68 ms
76,776 KB
testcase_28 AC 56 ms
70,736 KB
testcase_29 AC 45 ms
65,184 KB
testcase_30 AC 42 ms
62,344 KB
testcase_31 AC 38 ms
60,896 KB
testcase_32 AC 32 ms
52,820 KB
testcase_33 AC 38 ms
60,492 KB
testcase_34 AC 36 ms
59,440 KB
testcase_35 AC 36 ms
58,836 KB
testcase_36 AC 33 ms
52,560 KB
testcase_37 AC 35 ms
58,828 KB
testcase_38 AC 176 ms
112,348 KB
testcase_39 AC 183 ms
106,756 KB
testcase_40 AC 46 ms
64,364 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 156 ms
111,684 KB
testcase_44 AC 182 ms
106,168 KB
testcase_45 AC 164 ms
111,688 KB
testcase_46 AC 183 ms
112,200 KB
testcase_47 AC 158 ms
105,988 KB
testcase_48 AC 176 ms
110,224 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(61)]
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(61):
    if len(bit_lst[bit])>=2:
        ans=0
        break
else:
    for bit in range(61):
        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(61):
            if N>>bit&1 and bit_lst[bit]!=1:
                for i in range(bit+1,61):
                    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