結果

問題 No.2961 Shiny Monster Master
ユーザー 👑 rin204rin204
提出日時 2024-11-16 21:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 1,777 ms
コード長 306 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-11-16 21:47:15
合計ジャッジ時間 10,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
68,224 KB
testcase_01 AC 104 ms
77,056 KB
testcase_02 AC 94 ms
76,800 KB
testcase_03 AC 100 ms
76,288 KB
testcase_04 AC 55 ms
61,952 KB
testcase_05 AC 71 ms
72,832 KB
testcase_06 AC 59 ms
65,408 KB
testcase_07 AC 84 ms
76,416 KB
testcase_08 AC 119 ms
84,992 KB
testcase_09 AC 56 ms
62,720 KB
testcase_10 AC 108 ms
85,888 KB
testcase_11 AC 115 ms
82,688 KB
testcase_12 AC 110 ms
78,976 KB
testcase_13 AC 76 ms
69,760 KB
testcase_14 AC 107 ms
84,864 KB
testcase_15 AC 127 ms
86,528 KB
testcase_16 AC 65 ms
68,224 KB
testcase_17 AC 124 ms
86,656 KB
testcase_18 AC 124 ms
86,784 KB
testcase_19 AC 109 ms
88,192 KB
testcase_20 AC 120 ms
84,736 KB
testcase_21 AC 92 ms
83,456 KB
testcase_22 AC 52 ms
63,104 KB
testcase_23 AC 96 ms
85,248 KB
testcase_24 AC 119 ms
80,896 KB
testcase_25 AC 117 ms
83,024 KB
testcase_26 AC 125 ms
86,016 KB
testcase_27 AC 72 ms
74,240 KB
testcase_28 AC 64 ms
71,040 KB
testcase_29 AC 65 ms
67,840 KB
testcase_30 AC 76 ms
78,208 KB
testcase_31 AC 103 ms
82,688 KB
testcase_32 AC 100 ms
83,584 KB
testcase_33 AC 101 ms
88,320 KB
testcase_34 AC 112 ms
80,384 KB
testcase_35 AC 131 ms
86,400 KB
testcase_36 AC 112 ms
77,696 KB
testcase_37 AC 135 ms
88,192 KB
testcase_38 AC 112 ms
77,440 KB
testcase_39 AC 116 ms
80,256 KB
testcase_40 AC 123 ms
80,640 KB
testcase_41 AC 107 ms
76,928 KB
testcase_42 AC 130 ms
86,016 KB
testcase_43 AC 106 ms
76,800 KB
testcase_44 AC 139 ms
88,192 KB
testcase_45 AC 37 ms
51,584 KB
testcase_46 AC 113 ms
81,152 KB
testcase_47 AC 119 ms
81,536 KB
testcase_48 AC 67 ms
67,200 KB
testcase_49 AC 133 ms
77,440 KB
testcase_50 AC 149 ms
84,608 KB
testcase_51 AC 125 ms
83,316 KB
testcase_52 AC 76 ms
72,960 KB
testcase_53 AC 64 ms
69,376 KB
testcase_54 AC 65 ms
67,072 KB
testcase_55 AC 90 ms
80,896 KB
testcase_56 AC 95 ms
83,840 KB
testcase_57 AC 69 ms
72,576 KB
testcase_58 AC 110 ms
78,848 KB
testcase_59 AC 84 ms
79,488 KB
testcase_60 AC 85 ms
78,464 KB
testcase_61 AC 94 ms
79,616 KB
testcase_62 AC 137 ms
88,192 KB
testcase_63 AC 119 ms
81,152 KB
testcase_64 AC 63 ms
70,912 KB
testcase_65 AC 109 ms
87,424 KB
testcase_66 AC 59 ms
63,232 KB
testcase_67 AC 101 ms
76,416 KB
testcase_68 AC 65 ms
65,280 KB
testcase_69 AC 100 ms
76,288 KB
testcase_70 AC 74 ms
69,120 KB
testcase_71 AC 59 ms
62,720 KB
testcase_72 AC 115 ms
76,800 KB
testcase_73 AC 103 ms
76,672 KB
testcase_74 AC 142 ms
89,600 KB
testcase_75 AC 168 ms
89,600 KB
testcase_76 AC 142 ms
89,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

R, n = map(int, input().split())
A = list(map(int, input().split()))
A.sort()


def f(x):
    tot = (x // R) * n
    x %= R
    tot += bisect_right(A, x)

    return tot


Q = int(input())

for _ in range(Q):
    l, r = map(int, input().split())
    print(f(r) - f(l - 1))
0