結果

問題 No.911 ラッキーソート
ユーザー mkawa2mkawa2
提出日時 2019-11-02 23:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,072 KB
最終ジャッジ日時 2024-09-14 23:29:10
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 40 ms
52,864 KB
testcase_12 AC 41 ms
52,864 KB
testcase_13 AC 194 ms
113,272 KB
testcase_14 AC 146 ms
113,456 KB
testcase_15 AC 138 ms
113,628 KB
testcase_16 AC 157 ms
113,896 KB
testcase_17 AC 158 ms
113,784 KB
testcase_18 AC 159 ms
114,020 KB
testcase_19 AC 152 ms
112,996 KB
testcase_20 AC 143 ms
113,076 KB
testcase_21 AC 160 ms
112,828 KB
testcase_22 AC 153 ms
111,696 KB
testcase_23 AC 142 ms
107,028 KB
testcase_24 AC 139 ms
101,632 KB
testcase_25 AC 101 ms
93,732 KB
testcase_26 AC 92 ms
87,996 KB
testcase_27 AC 66 ms
76,800 KB
testcase_28 AC 57 ms
69,504 KB
testcase_29 AC 48 ms
62,240 KB
testcase_30 AC 47 ms
59,648 KB
testcase_31 AC 43 ms
57,728 KB
testcase_32 AC 40 ms
52,736 KB
testcase_33 AC 47 ms
59,776 KB
testcase_34 AC 40 ms
52,224 KB
testcase_35 AC 42 ms
57,600 KB
testcase_36 AC 40 ms
52,352 KB
testcase_37 AC 43 ms
58,240 KB
testcase_38 AC 160 ms
114,072 KB
testcase_39 AC 161 ms
107,904 KB
testcase_40 AC 49 ms
62,208 KB
testcase_41 AC 149 ms
112,984 KB
testcase_42 AC 117 ms
97,816 KB
testcase_43 AC 151 ms
113,852 KB
testcase_44 AC 124 ms
113,064 KB
testcase_45 AC 132 ms
113,724 KB
testcase_46 AC 122 ms
107,684 KB
testcase_47 AC 113 ms
107,472 KB
testcase_48 AC 128 ms
106,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")

def main():
    def bitdp(lr):
        if lr == -1: return 0
        dp = [[0] * 2 for _ in range(max_k + 1)]
        dp[0][0] = 1
        for i in range(max_k):
            lri = (lr >> (max_k - 1 - i)) & 1
            for f in range(2):
                pre = dp[i][f]
                if pre == 0: continue
                nf = f
                if dig[i] < 1 and (f == 1 or lri == 1):
                    dp[i + 1][nf] += pre
                if dig[i] > -1:
                    if lri == 1: nf = 1
                    dp[i + 1][nf] += pre
        # p2D(dp)
        return sum(dp[max_k])

    max_k = 61
    n, l, r = map(int, input().split())
    aa = list(map(int, input().split()))
    # p2D(aa)
    dig = [0] * max_k  # 1昇順 -1降順 0どちらでも
    for a0, a1 in zip(aa, aa[1:]):
        for i in range(max_k):
            a0k = (a0 >> (max_k - 1 - i)) & 1
            a1k = (a1 >> (max_k - 1 - i)) & 1
            if a0k != a1k:
                if dig[i] == a0k - a1k:
                    print(0)
                    exit()
                else:
                    dig[i] = a1k - a0k
                    break
    # print(dig)
    print(bitdp(r) - bitdp(l - 1))

main()
0