結果

問題 No.2901 Logical Sum of Substring
ユーザー 高岡コウダイ高岡コウダイ
提出日時 2024-09-25 19:45:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 40,368 KB
最終ジャッジ日時 2024-09-25 19:45:32
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
datas = list(map(int, input().split()))

def process_data(datas, key, N):
    S = [0] * (N+1)
    current = 0
    for i in range(N):
        current |= datas[i]
        if current == key:
            S[i+1] = S[i] + 1
        else:
            S[i+1] = S[i]
    return S

key = (1 << K) - 1
Q = int(input())
S = process_data(datas, key, N)

for _ in range(Q):
    query = list(map(int, input().split()))
    if query[0] == 1:
        _, i, v = query
        datas[i-1] = v
        S = process_data(datas, key, N)
    elif query[0] == 2:
        _, l, r = query
        if S[r] - S[l-1] > 0:
            print(r - l + 1)
        else:
            print(-1)
0