結果

問題 No.911 ラッキーソート
ユーザー vwxyzvwxyz
提出日時 2023-02-02 06:14:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 123,892 KB
最終ジャッジ日時 2024-07-01 22:03:22
合計ジャッジ時間 12,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
89,740 KB
testcase_01 AC 141 ms
89,480 KB
testcase_02 AC 143 ms
89,812 KB
testcase_03 AC 145 ms
89,192 KB
testcase_04 AC 143 ms
89,420 KB
testcase_05 AC 141 ms
89,472 KB
testcase_06 AC 147 ms
89,448 KB
testcase_07 AC 146 ms
89,392 KB
testcase_08 AC 144 ms
89,280 KB
testcase_09 AC 146 ms
89,692 KB
testcase_10 AC 145 ms
89,480 KB
testcase_11 AC 142 ms
89,296 KB
testcase_12 AC 145 ms
89,692 KB
testcase_13 AC 240 ms
119,588 KB
testcase_14 AC 243 ms
120,184 KB
testcase_15 AC 233 ms
119,296 KB
testcase_16 AC 261 ms
123,688 KB
testcase_17 AC 259 ms
123,440 KB
testcase_18 AC 260 ms
123,728 KB
testcase_19 AC 248 ms
120,036 KB
testcase_20 AC 247 ms
119,384 KB
testcase_21 AC 266 ms
122,432 KB
testcase_22 AC 261 ms
119,436 KB
testcase_23 AC 248 ms
115,756 KB
testcase_24 AC 247 ms
113,744 KB
testcase_25 AC 211 ms
107,828 KB
testcase_26 AC 202 ms
102,120 KB
testcase_27 AC 172 ms
94,640 KB
testcase_28 AC 163 ms
90,772 KB
testcase_29 AC 152 ms
90,508 KB
testcase_30 AC 153 ms
90,236 KB
testcase_31 AC 147 ms
90,052 KB
testcase_32 AC 146 ms
89,508 KB
testcase_33 AC 148 ms
89,908 KB
testcase_34 AC 149 ms
89,576 KB
testcase_35 AC 149 ms
89,864 KB
testcase_36 AC 148 ms
89,456 KB
testcase_37 AC 150 ms
89,904 KB
testcase_38 AC 264 ms
123,892 KB
testcase_39 AC 272 ms
118,412 KB
testcase_40 AC 156 ms
90,584 KB
testcase_41 AC 257 ms
120,224 KB
testcase_42 AC 214 ms
110,400 KB
testcase_43 AC 250 ms
120,248 KB
testcase_44 AC 240 ms
119,228 KB
testcase_45 AC 261 ms
123,684 KB
testcase_46 AC 257 ms
123,652 KB
testcase_47 AC 244 ms
119,420 KB
testcase_48 AC 255 ms
119,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

N,L,R=map(int,readline().split())
A=list(map(int,readline().split()))
X=[[1,1] for bit in range(62)]
for i in range(N-1):
    for bit in range(61,-1,-1):
        if A[i]&1<<bit!=A[i+1]&1<<bit:
            if A[i]&1<<bit:
                X[bit][0]=0
            else:
                X[bit][1]=0
            break
for bit in range(62):
    if not sum(X[bit]):
        ans=0
        break
else:
    def solve(N):
        bl=True
        dp=0
        for bit in range(61,-1,-1):
            dp*=sum(X[bit])
            if bl and X[bit][0] and N&1<<bit:
                dp+=1
            bl&=X[bit][N>>bit&1]
        return dp
    ans=solve(R+1)-solve(max(L,1))
    if L==0 and all(A[i]<A[i+1] for i in range(N-1)):
        ans+=1
print(ans)
0