結果

問題 No.2961 Shiny Monster Master
ユーザー のーとのーと
提出日時 2024-11-18 02:04:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 141,568 KB
最終ジャッジ日時 2024-11-18 02:05:05
合計ジャッジ時間 10,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 91 ms
121,600 KB
testcase_06 AC 96 ms
128,992 KB
testcase_07 AC 103 ms
127,232 KB
testcase_08 AC 166 ms
128,596 KB
testcase_09 AC 55 ms
83,968 KB
testcase_10 AC 135 ms
125,980 KB
testcase_11 AC 131 ms
129,152 KB
testcase_12 AC 133 ms
131,328 KB
testcase_13 AC 58 ms
73,856 KB
testcase_14 AC 139 ms
128,384 KB
testcase_15 AC 121 ms
122,112 KB
testcase_16 AC 99 ms
127,744 KB
testcase_17 AC 106 ms
99,940 KB
testcase_18 AC 149 ms
123,776 KB
testcase_19 AC 113 ms
124,416 KB
testcase_20 AC 143 ms
128,128 KB
testcase_21 AC 122 ms
125,312 KB
testcase_22 AC 54 ms
84,864 KB
testcase_23 AC 93 ms
107,944 KB
testcase_24 AC 91 ms
86,656 KB
testcase_25 AC 136 ms
129,792 KB
testcase_26 AC 137 ms
124,752 KB
testcase_27 AC 92 ms
117,888 KB
testcase_28 AC 118 ms
127,232 KB
testcase_29 AC 80 ms
111,488 KB
testcase_30 AC 124 ms
130,432 KB
testcase_31 AC 130 ms
129,024 KB
testcase_32 AC 120 ms
126,264 KB
testcase_33 AC 129 ms
125,420 KB
testcase_34 AC 126 ms
130,944 KB
testcase_35 AC 145 ms
125,980 KB
testcase_36 AC 124 ms
132,864 KB
testcase_37 AC 151 ms
120,576 KB
testcase_38 AC 122 ms
127,676 KB
testcase_39 AC 135 ms
132,672 KB
testcase_40 AC 120 ms
119,804 KB
testcase_41 AC 103 ms
107,216 KB
testcase_42 AC 140 ms
124,416 KB
testcase_43 AC 97 ms
95,360 KB
testcase_44 AC 137 ms
125,312 KB
testcase_45 AC 32 ms
52,480 KB
testcase_46 AC 101 ms
92,544 KB
testcase_47 AC 160 ms
130,460 KB
testcase_48 AC 114 ms
141,568 KB
testcase_49 AC 115 ms
111,616 KB
testcase_50 AC 129 ms
127,872 KB
testcase_51 AC 106 ms
96,052 KB
testcase_52 AC 97 ms
119,984 KB
testcase_53 AC 95 ms
123,776 KB
testcase_54 AC 64 ms
81,280 KB
testcase_55 AC 130 ms
127,488 KB
testcase_56 AC 111 ms
123,436 KB
testcase_57 AC 113 ms
116,008 KB
testcase_58 AC 125 ms
123,776 KB
testcase_59 AC 113 ms
124,416 KB
testcase_60 AC 95 ms
105,984 KB
testcase_61 AC 107 ms
115,200 KB
testcase_62 AC 174 ms
134,272 KB
testcase_63 AC 159 ms
129,556 KB
testcase_64 AC 71 ms
91,264 KB
testcase_65 AC 130 ms
125,696 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 171 ms
138,544 KB
testcase_75 AC 175 ms
138,708 KB
testcase_76 AC 172 ms
138,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,N=map(int,input().split())
A=sorted(list(map(int,input().split())))
B=[0]*R
for a in A:
	B[a]=1

#print(A)

Q=int(input())
from itertools import accumulate
S=list(accumulate(B)) #あるリストAの累積和リスト #S[i]=A[0]+A[1]+...+A[i]
def add(S,l,r):#累積和Sに対して a[l]+...+a[r] を返す(半開区間にしたほうがいいのか...?)
  if l==0:
    return S[r]
  else:
    return S[r]-S[l-1]

#print(S)
    
def f1(a,b):#a以下で最大のbの倍数
  return (a//b)*b

def g1(a,b):#a以上で最小のbの倍数
  return ((a+b-1)//b)*b


#SA=sum(A)

for i in range(Q):
	l,r=map(int,input().split())
	g=g1(l,R)
	f=f1(r,R)
	#print(f,g)
	if g-f==R:#もしlとrが同一区間におさまるなら→
		print(add(S,l%R,r%R))
	else:
	    print(add(S,l%R,R-1)+add(S,0,r%R)+N*((f-g)//R))
0