結果

問題 No.2961 Shiny Monster Master
ユーザー hato336hato336
提出日時 2024-11-16 15:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 1,777 ms
コード長 545 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-11-16 15:38:06
合計ジャッジ時間 16,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
89,088 KB
testcase_01 AC 180 ms
89,728 KB
testcase_02 AC 169 ms
89,216 KB
testcase_03 AC 177 ms
89,472 KB
testcase_04 AC 168 ms
88,704 KB
testcase_05 AC 165 ms
94,080 KB
testcase_06 AC 157 ms
89,216 KB
testcase_07 AC 184 ms
94,080 KB
testcase_08 AC 192 ms
98,048 KB
testcase_09 AC 152 ms
89,216 KB
testcase_10 AC 204 ms
99,712 KB
testcase_11 AC 196 ms
95,360 KB
testcase_12 AC 184 ms
91,648 KB
testcase_13 AC 176 ms
89,216 KB
testcase_14 AC 196 ms
98,048 KB
testcase_15 AC 196 ms
99,456 KB
testcase_16 AC 158 ms
89,216 KB
testcase_17 AC 197 ms
99,072 KB
testcase_18 AC 199 ms
99,840 KB
testcase_19 AC 207 ms
101,120 KB
testcase_20 AC 192 ms
97,920 KB
testcase_21 AC 181 ms
99,328 KB
testcase_22 AC 155 ms
89,216 KB
testcase_23 AC 183 ms
100,736 KB
testcase_24 AC 187 ms
93,312 KB
testcase_25 AC 187 ms
96,000 KB
testcase_26 AC 229 ms
99,328 KB
testcase_27 AC 170 ms
94,848 KB
testcase_28 AC 165 ms
93,952 KB
testcase_29 AC 157 ms
89,344 KB
testcase_30 AC 175 ms
98,816 KB
testcase_31 AC 179 ms
95,360 KB
testcase_32 AC 197 ms
96,256 KB
testcase_33 AC 184 ms
102,528 KB
testcase_34 AC 181 ms
92,800 KB
testcase_35 AC 203 ms
100,096 KB
testcase_36 AC 177 ms
89,856 KB
testcase_37 AC 204 ms
101,632 KB
testcase_38 AC 206 ms
90,240 KB
testcase_39 AC 194 ms
93,056 KB
testcase_40 AC 189 ms
93,056 KB
testcase_41 AC 180 ms
89,728 KB
testcase_42 AC 206 ms
99,072 KB
testcase_43 AC 177 ms
89,856 KB
testcase_44 AC 228 ms
101,504 KB
testcase_45 AC 127 ms
85,504 KB
testcase_46 AC 176 ms
93,696 KB
testcase_47 AC 173 ms
94,080 KB
testcase_48 AC 153 ms
89,344 KB
testcase_49 AC 183 ms
90,368 KB
testcase_50 AC 178 ms
97,536 KB
testcase_51 AC 207 ms
95,488 KB
testcase_52 AC 162 ms
92,800 KB
testcase_53 AC 155 ms
91,520 KB
testcase_54 AC 158 ms
89,088 KB
testcase_55 AC 178 ms
96,000 KB
testcase_56 AC 179 ms
99,584 KB
testcase_57 AC 164 ms
94,848 KB
testcase_58 AC 209 ms
91,264 KB
testcase_59 AC 176 ms
99,328 KB
testcase_60 AC 172 ms
96,128 KB
testcase_61 AC 168 ms
92,416 KB
testcase_62 AC 204 ms
101,376 KB
testcase_63 AC 197 ms
94,208 KB
testcase_64 AC 165 ms
94,848 KB
testcase_65 AC 204 ms
101,248 KB
testcase_66 AC 149 ms
88,704 KB
testcase_67 AC 175 ms
89,472 KB
testcase_68 AC 155 ms
88,704 KB
testcase_69 AC 170 ms
89,472 KB
testcase_70 AC 158 ms
88,960 KB
testcase_71 AC 148 ms
88,576 KB
testcase_72 AC 194 ms
89,600 KB
testcase_73 AC 168 ms
89,472 KB
testcase_74 AC 210 ms
103,296 KB
testcase_75 AC 210 ms
103,424 KB
testcase_76 AC 217 ms
102,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []

r,n = map(int,input().split())
#for i in range(n):
a = list(map(int,input().split()))
a.sort()
q = int(input())
def calc(x):
    res = n * (x // r)
    x %= r
    return res + bisect.bisect_right(a,x)

for i in range(q):
    l,rr = map(int,input().split())
    print(calc(rr) - calc(l-1))
0