結果

問題 No.911 ラッキーソート
ユーザー maspymaspy
提出日時 2020-03-17 12:18:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,300 KB
最終ジャッジ日時 2024-11-30 16:56:36
合計ジャッジ時間 7,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 140 ms
32,744 KB
testcase_14 AC 139 ms
33,760 KB
testcase_15 AC 141 ms
32,748 KB
testcase_16 AC 145 ms
35,300 KB
testcase_17 AC 143 ms
35,048 KB
testcase_18 AC 142 ms
35,040 KB
testcase_19 AC 142 ms
34,124 KB
testcase_20 AC 140 ms
32,912 KB
testcase_21 AC 143 ms
33,992 KB
testcase_22 AC 141 ms
33,100 KB
testcase_23 AC 135 ms
30,784 KB
testcase_24 AC 124 ms
29,812 KB
testcase_25 AC 88 ms
22,004 KB
testcase_26 AC 71 ms
19,836 KB
testcase_27 AC 53 ms
14,976 KB
testcase_28 AC 40 ms
12,852 KB
testcase_29 AC 30 ms
11,136 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 28 ms
10,496 KB
testcase_32 AC 29 ms
10,624 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 27 ms
10,624 KB
testcase_37 AC 27 ms
10,624 KB
testcase_38 AC 144 ms
35,176 KB
testcase_39 AC 141 ms
33,704 KB
testcase_40 AC 30 ms
11,392 KB
testcase_41 AC 141 ms
33,672 KB
testcase_42 AC 104 ms
24,816 KB
testcase_43 AC 140 ms
33,920 KB
testcase_44 AC 101 ms
32,748 KB
testcase_45 AC 113 ms
34,404 KB
testcase_46 AC 100 ms
34,368 KB
testcase_47 AC 104 ms
33,084 KB
testcase_48 AC 103 ms
33,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from functools import lru_cache

# %%
N, L, R, *A = map(int, read().split())
status = [-1] * 64


# %%
def calc_bitwise_status():
    for a, b in zip(A, A[1:]):
        n = (a ^ b).bit_length() - 1
        aa = (a >> n) & 1
        if aa == 0:
            if status[n] == 1:
                return False
            status[n] = 0
        else:
            if status[n] == 0:
                return False
            status[n] = 1
    return True


# %%
if not calc_bitwise_status():
    print(0)
    exit()


# %%
@lru_cache(None)
def f(N, i):
    if N < 0:
        return 0
    if i == 63:
        return 1
    s = status[i]
    q, r = divmod(N, 2)
    if s == 0:
        return f(N // 2, i + 1)
    elif s == 1:
        return f((N - 1) // 2, i + 1)
    else:
        return f(N // 2, i + 1) + f((N - 1) // 2, i + 1)


# %%
print(f(R, 0) - f(L - 1, 0))
0