結果

問題 No.911 ラッキーソート
ユーザー vwxyzvwxyz
提出日時 2023-02-02 05:43:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,414 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 137,624 KB
最終ジャッジ日時 2023-09-14 14:12:01
合計ジャッジ時間 19,744 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
91,212 KB
testcase_01 AC 241 ms
91,152 KB
testcase_02 AC 243 ms
90,956 KB
testcase_03 AC 241 ms
91,136 KB
testcase_04 AC 245 ms
91,136 KB
testcase_05 AC 247 ms
91,108 KB
testcase_06 AC 246 ms
91,176 KB
testcase_07 AC 242 ms
91,152 KB
testcase_08 AC 244 ms
91,156 KB
testcase_09 AC 254 ms
91,308 KB
testcase_10 AC 248 ms
90,984 KB
testcase_11 AC 240 ms
91,276 KB
testcase_12 AC 244 ms
91,136 KB
testcase_13 AC 400 ms
137,624 KB
testcase_14 AC 349 ms
127,576 KB
testcase_15 AC 346 ms
124,696 KB
testcase_16 AC 360 ms
124,504 KB
testcase_17 AC 359 ms
126,648 KB
testcase_18 AC 359 ms
127,436 KB
testcase_19 AC 351 ms
124,292 KB
testcase_20 AC 348 ms
133,012 KB
testcase_21 AC 354 ms
124,272 KB
testcase_22 AC 357 ms
123,948 KB
testcase_23 AC 348 ms
122,060 KB
testcase_24 AC 350 ms
125,984 KB
testcase_25 AC 305 ms
112,316 KB
testcase_26 AC 298 ms
106,648 KB
testcase_27 AC 279 ms
98,980 KB
testcase_28 WA -
testcase_29 AC 258 ms
94,720 KB
testcase_30 AC 254 ms
94,612 KB
testcase_31 AC 246 ms
91,872 KB
testcase_32 WA -
testcase_33 AC 248 ms
92,216 KB
testcase_34 WA -
testcase_35 AC 244 ms
91,748 KB
testcase_36 AC 243 ms
91,168 KB
testcase_37 AC 249 ms
91,880 KB
testcase_38 AC 358 ms
124,520 KB
testcase_39 AC 365 ms
122,088 KB
testcase_40 AC 250 ms
94,864 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 350 ms
124,556 KB
testcase_44 AC 393 ms
137,604 KB
testcase_45 AC 355 ms
130,536 KB
testcase_46 AC 347 ms
126,924 KB
testcase_47 AC 339 ms
124,208 KB
testcase_48 AC 372 ms
130,236 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
        if N&1<<60 and 0 in X[60]:
            dp+=1
        for bit in range(59,-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(L)
print(ans)
0