結果

問題 No.911 ラッキーソート
ユーザー vwxyzvwxyz
提出日時 2023-02-02 06:04:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,432 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 123,904 KB
最終ジャッジ日時 2024-07-01 21:53:30
合計ジャッジ時間 12,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
89,548 KB
testcase_01 AC 146 ms
89,824 KB
testcase_02 AC 149 ms
89,580 KB
testcase_03 WA -
testcase_04 AC 145 ms
89,684 KB
testcase_05 WA -
testcase_06 AC 145 ms
89,684 KB
testcase_07 AC 144 ms
89,612 KB
testcase_08 AC 144 ms
89,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 144 ms
89,820 KB
testcase_12 AC 142 ms
89,560 KB
testcase_13 WA -
testcase_14 AC 246 ms
120,416 KB
testcase_15 AC 241 ms
119,544 KB
testcase_16 AC 265 ms
123,692 KB
testcase_17 AC 265 ms
123,668 KB
testcase_18 AC 264 ms
123,476 KB
testcase_19 AC 254 ms
120,040 KB
testcase_20 AC 247 ms
119,508 KB
testcase_21 AC 266 ms
122,556 KB
testcase_22 AC 263 ms
119,676 KB
testcase_23 AC 245 ms
115,760 KB
testcase_24 AC 243 ms
113,676 KB
testcase_25 AC 203 ms
107,716 KB
testcase_26 AC 196 ms
101,892 KB
testcase_27 AC 169 ms
94,648 KB
testcase_28 AC 162 ms
90,920 KB
testcase_29 AC 153 ms
90,844 KB
testcase_30 AC 151 ms
90,172 KB
testcase_31 AC 150 ms
89,728 KB
testcase_32 AC 147 ms
89,536 KB
testcase_33 AC 152 ms
90,320 KB
testcase_34 AC 145 ms
89,700 KB
testcase_35 AC 145 ms
90,088 KB
testcase_36 AC 146 ms
89,608 KB
testcase_37 AC 145 ms
89,956 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 153 ms
90,704 KB
testcase_41 AC 249 ms
120,208 KB
testcase_42 AC 213 ms
110,828 KB
testcase_43 WA -
testcase_44 AC 295 ms
119,332 KB
testcase_45 AC 259 ms
123,696 KB
testcase_46 AC 260 ms
123,904 KB
testcase_47 AC 244 ms
119,536 KB
testcase_48 AC 260 ms
119,596 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(61)]
for i in range(N-1):
    for bit in range(60,-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(61):
    if not sum(X[bit]):
        ans=0
        break
else:
    def solve(N):
        bl=X[60][N>>60&1]
        dp=0
        for bit in range(60,-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)-solve(L)
    if L==0 and all(A[i]^R<A[i+1]^R for i in range(N-1)):
        ans+=1
print(ans)
0