結果

問題 No.911 ラッキーソート
ユーザー shotoyooshotoyoo
提出日時 2021-07-14 22:38:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,288 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,472 KB
最終ジャッジ日時 2024-07-03 23:22:14
合計ジャッジ時間 8,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 43 ms
52,332 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 41 ms
52,608 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 WA -
testcase_14 AC 157 ms
111,880 KB
testcase_15 AC 148 ms
106,180 KB
testcase_16 AC 157 ms
112,344 KB
testcase_17 AC 153 ms
112,360 KB
testcase_18 AC 152 ms
112,340 KB
testcase_19 AC 145 ms
112,472 KB
testcase_20 AC 133 ms
106,156 KB
testcase_21 AC 152 ms
111,356 KB
testcase_22 AC 148 ms
111,204 KB
testcase_23 AC 132 ms
102,432 KB
testcase_24 AC 132 ms
99,528 KB
testcase_25 AC 97 ms
95,104 KB
testcase_26 AC 90 ms
88,776 KB
testcase_27 AC 67 ms
75,776 KB
testcase_28 AC 59 ms
68,864 KB
testcase_29 AC 51 ms
63,104 KB
testcase_30 AC 47 ms
61,184 KB
testcase_31 AC 43 ms
58,112 KB
testcase_32 AC 40 ms
52,608 KB
testcase_33 AC 43 ms
58,112 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 42 ms
57,856 KB
testcase_36 AC 39 ms
52,352 KB
testcase_37 AC 42 ms
57,728 KB
testcase_38 WA -
testcase_39 AC 154 ms
106,868 KB
testcase_40 AC 50 ms
63,360 KB
testcase_41 AC 144 ms
111,748 KB
testcase_42 AC 107 ms
95,872 KB
testcase_43 AC 145 ms
112,436 KB
testcase_44 AC 108 ms
106,428 KB
testcase_45 AC 126 ms
106,664 KB
testcase_46 AC 122 ms
106,520 KB
testcase_47 AC 114 ms
106,228 KB
testcase_48 AC 127 ms
106,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,L,R = list(map(int, input().split()))
a = list(map(int, input().split()))
l = [-1]*62
ng = 0
for i in range(1,n):
    v = a[i]
    p = a[i-1]
    for b in range(62)[::-1]:
        if (v>>b&1) == (p>>b&1):
            continue
        if v>>b&1:
            if l[b]==1:
                ng = 1
                break
            l[b] = 0
        else:
            if l[b]==0:
                ng = 1
                break
            l[b] = 1
        break
    if ng:
        break
def sub(r):
    if r<0:
        return 0
    ll = []
    v = 0
    for i in range(62)[::-1]:
        if l[i]==-1:
            if v+(1<<i)<=r:
                ll.append(1)
                v += (1<<i)
            else:
                ll.append(0)
    if not l or all(item==0 for item in ll):
        return 0
    v = 1
    res = 0
#     print(ll[-10:])
    for b in ll[::-1]:
        res += b*v
        v *= 2
    return res + 1
if ng:
    ans = 0
else:
    val = 0
    for i in range(62):
        if l[i]==1:
            val += (1<<i)
    ans = sub(R-val) - sub(L-val-1)
print(ans)
0