結果

問題 No.2961 Shiny Monster Master
ユーザー prin_kemkemprin_kemkem
提出日時 2024-11-16 15:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 1,777 ms
コード長 1,028 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-11-16 15:43:41
合計ジャッジ時間 13,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
80,128 KB
testcase_01 AC 130 ms
81,152 KB
testcase_02 AC 120 ms
80,896 KB
testcase_03 AC 125 ms
80,896 KB
testcase_04 AC 135 ms
80,256 KB
testcase_05 AC 123 ms
87,808 KB
testcase_06 AC 114 ms
81,024 KB
testcase_07 AC 124 ms
87,680 KB
testcase_08 AC 147 ms
92,672 KB
testcase_09 AC 106 ms
80,384 KB
testcase_10 AC 140 ms
93,952 KB
testcase_11 AC 140 ms
89,472 KB
testcase_12 AC 134 ms
84,480 KB
testcase_13 AC 123 ms
80,000 KB
testcase_14 AC 147 ms
92,288 KB
testcase_15 AC 149 ms
94,208 KB
testcase_16 AC 115 ms
81,024 KB
testcase_17 AC 151 ms
93,952 KB
testcase_18 AC 151 ms
94,464 KB
testcase_19 AC 141 ms
96,128 KB
testcase_20 AC 160 ms
92,416 KB
testcase_21 AC 139 ms
93,952 KB
testcase_22 AC 111 ms
80,512 KB
testcase_23 AC 139 ms
95,488 KB
testcase_24 AC 136 ms
86,912 KB
testcase_25 AC 143 ms
89,728 KB
testcase_26 AC 148 ms
94,208 KB
testcase_27 AC 123 ms
89,088 KB
testcase_28 AC 122 ms
87,936 KB
testcase_29 AC 124 ms
82,304 KB
testcase_30 AC 129 ms
93,312 KB
testcase_31 AC 146 ms
89,600 KB
testcase_32 AC 138 ms
90,240 KB
testcase_33 AC 144 ms
97,408 KB
testcase_34 AC 134 ms
86,016 KB
testcase_35 AC 164 ms
94,848 KB
testcase_36 AC 165 ms
81,536 KB
testcase_37 AC 164 ms
96,512 KB
testcase_38 AC 136 ms
83,328 KB
testcase_39 AC 148 ms
87,040 KB
testcase_40 AC 145 ms
86,912 KB
testcase_41 AC 130 ms
81,024 KB
testcase_42 AC 160 ms
94,592 KB
testcase_43 AC 142 ms
81,792 KB
testcase_44 AC 170 ms
96,640 KB
testcase_45 AC 98 ms
79,872 KB
testcase_46 AC 138 ms
87,296 KB
testcase_47 AC 131 ms
87,808 KB
testcase_48 AC 108 ms
80,512 KB
testcase_49 AC 143 ms
82,560 KB
testcase_50 AC 137 ms
91,904 KB
testcase_51 AC 153 ms
89,984 KB
testcase_52 AC 136 ms
85,760 KB
testcase_53 AC 123 ms
84,608 KB
testcase_54 AC 121 ms
81,536 KB
testcase_55 AC 141 ms
90,368 KB
testcase_56 AC 136 ms
93,952 KB
testcase_57 AC 125 ms
88,960 KB
testcase_58 AC 132 ms
84,352 KB
testcase_59 AC 138 ms
93,824 KB
testcase_60 AC 139 ms
90,240 KB
testcase_61 AC 131 ms
85,632 KB
testcase_62 AC 174 ms
96,768 KB
testcase_63 AC 147 ms
87,424 KB
testcase_64 AC 130 ms
88,960 KB
testcase_65 AC 146 ms
95,360 KB
testcase_66 AC 118 ms
80,000 KB
testcase_67 AC 139 ms
80,768 KB
testcase_68 AC 119 ms
80,128 KB
testcase_69 AC 120 ms
80,896 KB
testcase_70 AC 114 ms
80,256 KB
testcase_71 AC 104 ms
80,128 KB
testcase_72 AC 132 ms
80,768 KB
testcase_73 AC 127 ms
80,768 KB
testcase_74 AC 164 ms
98,432 KB
testcase_75 AC 177 ms
98,688 KB
testcase_76 AC 163 ms
98,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
#from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
#from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush, heappushpop
import math
import bisect
from pprint import pprint
from random import randint, shuffle, randrange
#from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

R, N = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
A = A+[R+a for a in A]
Q = int(input())
for _ in range(Q):
    l, r = map(int, input().split())
    r += 1
    p = (r-l)//R
    r -= p*R
    q = l//R
    l -= q*R; r -= q*R
    ans = N*p
    ans += bisect.bisect_left(A, r)-bisect.bisect_left(A, l)
    print(ans)
0