結果

問題 No.911 ラッキーソート
ユーザー titiatitia
提出日時 2019-12-01 03:07:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 79,160 KB
最終ジャッジ日時 2024-11-21 04:06:06
合計ジャッジ時間 65,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,000 KB
testcase_01 AC 32 ms
53,036 KB
testcase_02 AC 31 ms
16,000 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
59,048 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
57,872 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 WA -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 405 ms
32,756 KB
testcase_45 AC 396 ms
34,232 KB
testcase_46 AC 407 ms
34,320 KB
testcase_47 AC 436 ms
33,024 KB
testcase_48 AC 311 ms
79,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,L,R=map(int,input().split())
A=list(map(int,input().split()))

ANS=[-1]*62

for i in range(1,N):
    if A[i]==A[i-1]:
        print(0)
        sys.exit()

for i in range(61,-1,-1):
    B=[a>>i for a in A]
    C=[b^1 for b in B]

    flagb=1
    flagc=1

    for j in range(1,N):
        if B[j-1]>B[j]:
            flagb=0
        if C[j-1]>C[j]:
            flagc=0

    if flagb and flagc:
        ANS[i]=2
    elif flagb:
        ANS[i]=0
    elif flagc:
        ANS[i]=1
        A=[a^(1<<i) for a in A]
    else:
        print(0)
        sys.exit()

def calc(N,keta):
    if N<0:
        return 0
    
    if keta==0:
        return 0
        if ANS[0]<=1:
            return 1
        else:
            return 2

    if N & (1<<keta)==0:
        if ANS[keta]==0:
            return calc(N,keta-1)
        
        elif ANS[keta]==1:
            return 0

        elif ANS[keta]==2:
            return calc(N,keta-1)

    else:
        if ANS[keta]==0:
            return calc(N,keta-1)
            
        elif ANS[keta]==1:
            return calc(N,keta-1)
        
        elif ANS[keta]==2:
            return calc(N,keta-1)+(1<<(ANS[:keta].count(2)))

print(calc(R,61)-calc(L-1,61)+1)
0