結果

問題 No.2961 Shiny Monster Master
ユーザー のーとのーと
提出日時 2024-11-16 16:16:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,480 KB
最終ジャッジ日時 2024-11-16 16:18:02
合計ジャッジ時間 12,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 107 ms
128,512 KB
testcase_06 AC 115 ms
129,664 KB
testcase_07 AC 123 ms
129,408 KB
testcase_08 AC 170 ms
133,900 KB
testcase_09 AC 69 ms
84,480 KB
testcase_10 AC 169 ms
132,720 KB
testcase_11 AC 152 ms
132,224 KB
testcase_12 AC 155 ms
129,280 KB
testcase_13 AC 69 ms
74,368 KB
testcase_14 AC 168 ms
134,016 KB
testcase_15 AC 140 ms
132,552 KB
testcase_16 AC 114 ms
128,600 KB
testcase_17 AC 129 ms
110,380 KB
testcase_18 AC 159 ms
129,920 KB
testcase_19 AC 142 ms
132,352 KB
testcase_20 AC 179 ms
133,376 KB
testcase_21 AC 153 ms
132,608 KB
testcase_22 AC 73 ms
86,784 KB
testcase_23 AC 119 ms
119,552 KB
testcase_24 AC 119 ms
91,648 KB
testcase_25 AC 170 ms
132,224 KB
testcase_26 AC 174 ms
131,328 KB
testcase_27 AC 116 ms
125,440 KB
testcase_28 AC 121 ms
129,280 KB
testcase_29 AC 107 ms
114,176 KB
testcase_30 AC 156 ms
138,912 KB
testcase_31 AC 158 ms
131,840 KB
testcase_32 AC 146 ms
133,632 KB
testcase_33 AC 163 ms
134,784 KB
testcase_34 AC 154 ms
130,432 KB
testcase_35 AC 182 ms
132,352 KB
testcase_36 AC 157 ms
128,128 KB
testcase_37 AC 160 ms
129,024 KB
testcase_38 AC 152 ms
125,056 KB
testcase_39 AC 162 ms
131,456 KB
testcase_40 AC 143 ms
124,160 KB
testcase_41 AC 128 ms
107,520 KB
testcase_42 AC 165 ms
130,560 KB
testcase_43 AC 119 ms
95,360 KB
testcase_44 AC 167 ms
132,992 KB
testcase_45 AC 39 ms
51,968 KB
testcase_46 AC 127 ms
96,896 KB
testcase_47 AC 166 ms
132,224 KB
testcase_48 AC 135 ms
135,424 KB
testcase_49 AC 136 ms
112,896 KB
testcase_50 AC 163 ms
132,864 KB
testcase_51 AC 130 ms
103,296 KB
testcase_52 AC 120 ms
124,160 KB
testcase_53 AC 114 ms
127,616 KB
testcase_54 AC 78 ms
84,608 KB
testcase_55 AC 155 ms
131,712 KB
testcase_56 AC 133 ms
129,920 KB
testcase_57 AC 111 ms
125,184 KB
testcase_58 AC 153 ms
126,848 KB
testcase_59 AC 132 ms
131,072 KB
testcase_60 AC 114 ms
114,176 KB
testcase_61 AC 128 ms
119,040 KB
testcase_62 AC 197 ms
138,712 KB
testcase_63 AC 185 ms
131,536 KB
testcase_64 AC 87 ms
99,968 KB
testcase_65 AC 156 ms
133,504 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 200 ms
139,356 KB
testcase_75 AC 200 ms
139,480 KB
testcase_76 AC 200 ms
139,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#print(A)

Q=int(input())
from itertools import accumulate
S=list(accumulate(A)) #あるリスト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):
  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)
	if f<g:
		print(add(S,l%R,r%R))
	else:
	    print(add(S,l%R,R-1)+add(S,0,r%R)+SA*((f-g)//R))
0