結果

問題 No.911 ラッキーソート
ユーザー vwxyzvwxyz
提出日時 2021-10-14 23:54:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,172 KB
最終ジャッジ日時 2024-09-17 16:38:18
合計ジャッジ時間 7,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 252 ms
32,740 KB
testcase_14 AC 255 ms
33,760 KB
testcase_15 AC 262 ms
32,864 KB
testcase_16 AC 266 ms
35,172 KB
testcase_17 AC 256 ms
35,044 KB
testcase_18 AC 265 ms
35,032 KB
testcase_19 AC 260 ms
34,116 KB
testcase_20 AC 265 ms
32,916 KB
testcase_21 AC 274 ms
33,984 KB
testcase_22 AC 250 ms
33,092 KB
testcase_23 AC 238 ms
30,904 KB
testcase_24 AC 217 ms
29,808 KB
testcase_25 AC 150 ms
22,000 KB
testcase_26 AC 120 ms
19,840 KB
testcase_27 AC 66 ms
15,120 KB
testcase_28 AC 48 ms
12,856 KB
testcase_29 AC 32 ms
11,264 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 25 ms
10,624 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 25 ms
10,624 KB
testcase_34 AC 25 ms
10,752 KB
testcase_35 AC 26 ms
10,624 KB
testcase_36 AC 26 ms
10,624 KB
testcase_37 AC 25 ms
10,752 KB
testcase_38 AC 249 ms
35,172 KB
testcase_39 AC 250 ms
33,572 KB
testcase_40 AC 31 ms
11,264 KB
testcase_41 AC 261 ms
33,664 KB
testcase_42 AC 180 ms
24,808 KB
testcase_43 AC 245 ms
34,020 KB
testcase_44 AC 123 ms
32,868 KB
testcase_45 AC 154 ms
34,272 KB
testcase_46 AC 120 ms
34,368 KB
testcase_47 AC 141 ms
33,068 KB
testcase_48 AC 128 ms
33,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,L,R=map(int,readline().split())
A=list(map(int,readline().split()))
bit_lst=[None for bit in range(62)]
for i in range(1,N):
    bit=(A[i-1]^A[i]).bit_length()-1
    if A[i-1]>>bit&1 and not A[i]>>bit&1:
        if bit_lst[bit]==0:
            print(0)
            exit()
        bit_lst[bit]=1
    elif not A[i-1]>>bit&1 and A[i]>>bit&1:
        if bit_lst[bit]==1:
            print(0)
            exit()
        bit_lst[bit]=0
def cnt(N):
    retu=0
    for bit in range(62):
        if N>>bit&1 and bit_lst[bit]!=1:
            for i in range(bit+1,62):
                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