結果

問題 No.2170 Left Addition Machine
ユーザー 👑 rin204rin204
提出日時 2022-11-28 21:12:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,768 KB
最終ジャッジ日時 2024-04-29 05:16:27
合計ジャッジ時間 52,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 46 ms
52,096 KB
testcase_03 AC 745 ms
134,080 KB
testcase_04 AC 406 ms
77,568 KB
testcase_05 AC 518 ms
101,504 KB
testcase_06 AC 497 ms
107,136 KB
testcase_07 AC 713 ms
109,696 KB
testcase_08 AC 183 ms
99,840 KB
testcase_09 AC 620 ms
85,656 KB
testcase_10 AC 204 ms
77,184 KB
testcase_11 AC 400 ms
108,032 KB
testcase_12 AC 797 ms
135,284 KB
testcase_13 AC 804 ms
134,640 KB
testcase_14 AC 783 ms
134,760 KB
testcase_15 AC 803 ms
135,036 KB
testcase_16 AC 797 ms
134,516 KB
testcase_17 AC 789 ms
135,024 KB
testcase_18 AC 783 ms
134,764 KB
testcase_19 AC 797 ms
134,776 KB
testcase_20 AC 802 ms
134,520 KB
testcase_21 AC 625 ms
77,312 KB
testcase_22 AC 615 ms
77,184 KB
testcase_23 AC 608 ms
77,440 KB
testcase_24 AC 622 ms
77,056 KB
testcase_25 AC 606 ms
77,184 KB
testcase_26 AC 609 ms
77,440 KB
testcase_27 AC 619 ms
77,056 KB
testcase_28 AC 606 ms
77,056 KB
testcase_29 AC 624 ms
77,440 KB
testcase_30 AC 674 ms
128,120 KB
testcase_31 AC 686 ms
128,056 KB
testcase_32 AC 697 ms
127,856 KB
testcase_33 AC 676 ms
127,592 KB
testcase_34 AC 714 ms
127,476 KB
testcase_35 AC 684 ms
128,120 KB
testcase_36 AC 682 ms
127,352 KB
testcase_37 AC 681 ms
127,344 KB
testcase_38 AC 679 ms
127,600 KB
testcase_39 AC 549 ms
77,312 KB
testcase_40 AC 546 ms
77,568 KB
testcase_41 AC 548 ms
77,312 KB
testcase_42 AC 547 ms
77,056 KB
testcase_43 AC 568 ms
77,184 KB
testcase_44 AC 562 ms
77,184 KB
testcase_45 AC 535 ms
77,056 KB
testcase_46 AC 547 ms
77,312 KB
testcase_47 AC 550 ms
76,928 KB
testcase_48 AC 702 ms
127,676 KB
testcase_49 AC 711 ms
127,608 KB
testcase_50 AC 695 ms
127,800 KB
testcase_51 AC 699 ms
127,984 KB
testcase_52 AC 711 ms
127,984 KB
testcase_53 AC 711 ms
127,968 KB
testcase_54 AC 699 ms
127,336 KB
testcase_55 AC 684 ms
127,976 KB
testcase_56 AC 701 ms
127,580 KB
testcase_57 AC 779 ms
141,436 KB
testcase_58 AC 780 ms
141,948 KB
testcase_59 AC 788 ms
142,072 KB
testcase_60 AC 786 ms
141,948 KB
testcase_61 AC 790 ms
141,556 KB
testcase_62 AC 776 ms
141,432 KB
testcase_63 AC 784 ms
142,104 KB
testcase_64 AC 777 ms
141,952 KB
testcase_65 AC 777 ms
141,912 KB
testcase_66 AC 257 ms
76,288 KB
testcase_67 AC 732 ms
144,768 KB
testcase_68 AC 751 ms
142,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
MOD = 998244353

n, Q = map(int, input().split())
A = list(map(int, input().split()))
ind = [0]
for i in range(1, n):
    if A[i - 1] >= A[i]:
        ind.append(i)

cum = [0]
times = 1
for a in A:
    cum.append((cum[-1] + a * times) % MOD)
    times *= 2
    times %= MOD

inv2 = [1]
inv = pow(2, MOD - 2, MOD)
for _ in range(n):
    inv2.append(inv2[-1] * inv % MOD)

for _ in range(Q):
    l, r = map(int, input().split())
    l -= 1
    r -= 1
    p = bisect_right(ind, r)
    l = max(l, ind[p - 1])
    ans = A[l]
    if l != r:
        ans += (cum[r + 1] - cum[l + 1]) * inv2[l + 1] % MOD
        ans %= MOD

    print(ans)
0