結果

問題 No.2170 Left Addition Machine
ユーザー 👑 rin204rin204
提出日時 2022-11-28 21:12:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 145,268 KB
最終ジャッジ日時 2024-11-18 06:05:40
合計ジャッジ時間 51,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 712 ms
134,020 KB
testcase_04 AC 374 ms
77,440 KB
testcase_05 AC 468 ms
101,376 KB
testcase_06 AC 445 ms
107,008 KB
testcase_07 AC 651 ms
109,952 KB
testcase_08 AC 173 ms
100,096 KB
testcase_09 AC 577 ms
85,404 KB
testcase_10 AC 183 ms
77,568 KB
testcase_11 AC 371 ms
107,904 KB
testcase_12 AC 729 ms
134,648 KB
testcase_13 AC 742 ms
134,780 KB
testcase_14 AC 726 ms
135,152 KB
testcase_15 AC 728 ms
134,892 KB
testcase_16 AC 731 ms
134,896 KB
testcase_17 AC 729 ms
134,896 KB
testcase_18 AC 752 ms
134,896 KB
testcase_19 AC 727 ms
134,772 KB
testcase_20 AC 704 ms
134,772 KB
testcase_21 AC 557 ms
77,184 KB
testcase_22 AC 578 ms
77,312 KB
testcase_23 AC 550 ms
77,312 KB
testcase_24 AC 578 ms
76,928 KB
testcase_25 AC 558 ms
77,312 KB
testcase_26 AC 560 ms
77,312 KB
testcase_27 AC 551 ms
77,312 KB
testcase_28 AC 559 ms
77,312 KB
testcase_29 AC 547 ms
77,312 KB
testcase_30 AC 646 ms
127,728 KB
testcase_31 AC 637 ms
127,696 KB
testcase_32 AC 648 ms
127,724 KB
testcase_33 AC 726 ms
127,864 KB
testcase_34 AC 645 ms
127,728 KB
testcase_35 AC 663 ms
127,496 KB
testcase_36 AC 645 ms
127,728 KB
testcase_37 AC 664 ms
127,700 KB
testcase_38 AC 680 ms
127,860 KB
testcase_39 AC 532 ms
77,056 KB
testcase_40 AC 537 ms
77,056 KB
testcase_41 AC 539 ms
77,184 KB
testcase_42 AC 531 ms
76,928 KB
testcase_43 AC 532 ms
77,124 KB
testcase_44 AC 520 ms
77,172 KB
testcase_45 AC 532 ms
77,056 KB
testcase_46 AC 525 ms
77,092 KB
testcase_47 AC 534 ms
77,264 KB
testcase_48 AC 708 ms
127,972 KB
testcase_49 AC 702 ms
127,680 KB
testcase_50 AC 703 ms
127,848 KB
testcase_51 AC 748 ms
128,152 KB
testcase_52 AC 693 ms
127,776 KB
testcase_53 AC 690 ms
127,588 KB
testcase_54 AC 697 ms
127,596 KB
testcase_55 AC 707 ms
127,896 KB
testcase_56 AC 698 ms
127,580 KB
testcase_57 AC 800 ms
141,812 KB
testcase_58 AC 795 ms
142,468 KB
testcase_59 AC 795 ms
142,332 KB
testcase_60 AC 796 ms
142,236 KB
testcase_61 AC 791 ms
141,672 KB
testcase_62 AC 782 ms
141,960 KB
testcase_63 AC 790 ms
142,204 KB
testcase_64 AC 793 ms
142,476 KB
testcase_65 AC 794 ms
142,172 KB
testcase_66 AC 262 ms
76,220 KB
testcase_67 AC 749 ms
145,268 KB
testcase_68 AC 786 ms
142,204 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