結果

問題 No.2961 Shiny Monster Master
ユーザー ArcAkiArcAki
提出日時 2024-11-16 15:51:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 411 ms / 1,777 ms
コード長 705 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 94,672 KB
最終ジャッジ日時 2024-11-16 15:52:12
合計ジャッジ時間 19,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
11,264 KB
testcase_01 AC 41 ms
11,136 KB
testcase_02 AC 37 ms
11,136 KB
testcase_03 AC 38 ms
11,136 KB
testcase_04 AC 33 ms
11,264 KB
testcase_05 AC 197 ms
52,632 KB
testcase_06 AC 308 ms
77,440 KB
testcase_07 AC 236 ms
62,624 KB
testcase_08 AC 344 ms
86,012 KB
testcase_09 AC 98 ms
29,056 KB
testcase_10 AC 356 ms
83,392 KB
testcase_11 AC 312 ms
73,532 KB
testcase_12 AC 334 ms
81,128 KB
testcase_13 AC 58 ms
16,384 KB
testcase_14 AC 336 ms
85,972 KB
testcase_15 AC 211 ms
49,324 KB
testcase_16 AC 272 ms
66,944 KB
testcase_17 AC 122 ms
28,736 KB
testcase_18 AC 231 ms
57,420 KB
testcase_19 AC 214 ms
53,424 KB
testcase_20 AC 355 ms
83,432 KB
testcase_21 AC 350 ms
79,400 KB
testcase_22 AC 105 ms
29,056 KB
testcase_23 AC 154 ms
34,816 KB
testcase_24 AC 90 ms
19,516 KB
testcase_25 AC 330 ms
76,028 KB
testcase_26 AC 292 ms
71,296 KB
testcase_27 AC 206 ms
47,468 KB
testcase_28 AC 232 ms
60,956 KB
testcase_29 AC 186 ms
48,512 KB
testcase_30 AC 369 ms
92,912 KB
testcase_31 AC 279 ms
69,000 KB
testcase_32 AC 323 ms
71,244 KB
testcase_33 AC 324 ms
78,104 KB
testcase_34 AC 270 ms
68,916 KB
testcase_35 AC 334 ms
79,584 KB
testcase_36 AC 286 ms
69,376 KB
testcase_37 AC 206 ms
48,752 KB
testcase_38 AC 233 ms
59,512 KB
testcase_39 AC 336 ms
80,088 KB
testcase_40 AC 221 ms
51,832 KB
testcase_41 AC 173 ms
40,192 KB
testcase_42 AC 289 ms
64,744 KB
testcase_43 AC 125 ms
31,488 KB
testcase_44 AC 258 ms
60,616 KB
testcase_45 AC 31 ms
11,264 KB
testcase_46 AC 102 ms
25,024 KB
testcase_47 AC 366 ms
90,576 KB
testcase_48 AC 309 ms
83,456 KB
testcase_49 AC 174 ms
45,568 KB
testcase_50 AC 310 ms
78,048 KB
testcase_51 AC 118 ms
27,060 KB
testcase_52 AC 206 ms
52,420 KB
testcase_53 AC 241 ms
56,124 KB
testcase_54 AC 85 ms
23,808 KB
testcase_55 AC 340 ms
86,296 KB
testcase_56 AC 229 ms
55,540 KB
testcase_57 AC 192 ms
47,256 KB
testcase_58 AC 228 ms
58,696 KB
testcase_59 AC 292 ms
66,140 KB
testcase_60 AC 147 ms
36,152 KB
testcase_61 AC 178 ms
46,612 KB
testcase_62 AC 378 ms
91,660 KB
testcase_63 AC 350 ms
90,088 KB
testcase_64 AC 133 ms
29,600 KB
testcase_65 AC 278 ms
66,460 KB
testcase_66 AC 33 ms
11,136 KB
testcase_67 AC 39 ms
11,136 KB
testcase_68 AC 36 ms
11,264 KB
testcase_69 AC 40 ms
11,264 KB
testcase_70 AC 36 ms
11,136 KB
testcase_71 AC 34 ms
11,136 KB
testcase_72 AC 39 ms
11,136 KB
testcase_73 AC 39 ms
11,136 KB
testcase_74 AC 396 ms
93,932 KB
testcase_75 AC 411 ms
94,672 KB
testcase_76 AC 398 ms
94,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict as dd
from random import randint
from copy import deepcopy
from heapq import heappop, heappush, heappushpop, heapify
INF = 1 << 60
MOD = 1000000007
xor = randint(100, INF)


def main():
    r, n = map(int, input().split())
    a = list(map(int, input().split()))
    ac = [0]*(2*r+1)
    for v in a:
        ac[v+1] += 1
        ac[v+r+1] += 1
    for i in range(2*r):
        ac[i+1] += ac[i]
    q = int(input())
    for _ in range(q):
        x, y = map(int, input().split())
        ans = ((y-x)//r)*n
        x %= r
        y %= r
        if x > y:
            y += r
        ans += ac[y+1]-ac[x]
        print(ans)



if __name__ == "__main__":
    main()
0