結果

問題 No.2961 Shiny Monster Master
ユーザー hiro1729hiro1729
提出日時 2024-11-17 17:27:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 1,777 ms
コード長 965 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 96,040 KB
最終ジャッジ日時 2024-11-17 17:28:04
合計ジャッジ時間 15,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
77,568 KB
testcase_01 AC 130 ms
78,988 KB
testcase_02 AC 126 ms
78,720 KB
testcase_03 AC 127 ms
78,720 KB
testcase_04 AC 86 ms
73,728 KB
testcase_05 AC 115 ms
87,296 KB
testcase_06 AC 100 ms
84,992 KB
testcase_07 AC 123 ms
88,420 KB
testcase_08 AC 166 ms
93,568 KB
testcase_09 AC 97 ms
79,840 KB
testcase_10 AC 153 ms
95,436 KB
testcase_11 AC 158 ms
90,440 KB
testcase_12 AC 145 ms
87,680 KB
testcase_13 AC 110 ms
78,620 KB
testcase_14 AC 164 ms
93,672 KB
testcase_15 AC 166 ms
91,904 KB
testcase_16 AC 111 ms
83,328 KB
testcase_17 AC 160 ms
89,320 KB
testcase_18 AC 169 ms
91,904 KB
testcase_19 AC 151 ms
93,056 KB
testcase_20 AC 168 ms
93,312 KB
testcase_21 AC 139 ms
94,976 KB
testcase_22 AC 93 ms
79,360 KB
testcase_23 AC 164 ms
91,392 KB
testcase_24 AC 149 ms
84,096 KB
testcase_25 AC 164 ms
91,120 KB
testcase_26 AC 172 ms
93,468 KB
testcase_27 AC 118 ms
88,192 KB
testcase_28 AC 112 ms
88,284 KB
testcase_29 AC 108 ms
82,648 KB
testcase_30 AC 129 ms
96,040 KB
testcase_31 AC 170 ms
90,096 KB
testcase_32 AC 144 ms
91,264 KB
testcase_33 AC 149 ms
94,036 KB
testcase_34 AC 148 ms
87,860 KB
testcase_35 AC 173 ms
94,656 KB
testcase_36 AC 141 ms
84,736 KB
testcase_37 AC 172 ms
92,544 KB
testcase_38 AC 175 ms
84,608 KB
testcase_39 AC 155 ms
89,264 KB
testcase_40 AC 153 ms
86,172 KB
testcase_41 AC 134 ms
82,532 KB
testcase_42 AC 167 ms
93,116 KB
testcase_43 AC 137 ms
81,536 KB
testcase_44 AC 174 ms
93,952 KB
testcase_45 AC 67 ms
66,816 KB
testcase_46 AC 164 ms
84,608 KB
testcase_47 AC 134 ms
91,776 KB
testcase_48 AC 105 ms
85,120 KB
testcase_49 AC 143 ms
82,048 KB
testcase_50 AC 146 ms
93,184 KB
testcase_51 AC 152 ms
86,404 KB
testcase_52 AC 115 ms
85,632 KB
testcase_53 AC 106 ms
85,268 KB
testcase_54 AC 129 ms
79,744 KB
testcase_55 AC 133 ms
92,416 KB
testcase_56 AC 139 ms
92,196 KB
testcase_57 AC 112 ms
87,680 KB
testcase_58 AC 144 ms
85,656 KB
testcase_59 AC 124 ms
93,056 KB
testcase_60 AC 127 ms
87,680 KB
testcase_61 AC 130 ms
85,396 KB
testcase_62 AC 184 ms
94,960 KB
testcase_63 AC 157 ms
90,880 KB
testcase_64 AC 105 ms
86,144 KB
testcase_65 AC 153 ms
95,032 KB
testcase_66 AC 86 ms
73,600 KB
testcase_67 AC 129 ms
78,592 KB
testcase_68 AC 96 ms
77,788 KB
testcase_69 AC 126 ms
78,720 KB
testcase_70 AC 107 ms
77,824 KB
testcase_71 AC 92 ms
74,240 KB
testcase_72 AC 130 ms
79,148 KB
testcase_73 AC 125 ms
78,848 KB
testcase_74 AC 183 ms
95,988 KB
testcase_75 AC 183 ms
95,664 KB
testcase_76 AC 182 ms
95,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing


class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s

R, N = map(int, input().split())
A = list(map(int, input().split()))
fw = FenwickTree(R)
for i in A:
	fw.add(i, 1)

for _ in range(int(input())):
	l, r = map(int, input().split())
	ans = ((r + R) // R - l // R) * N
	ans -= fw.sum(0, l % R)
	ans -= fw.sum(r % R + 1, R)
	print(ans)
0