結果

問題 No.2961 Shiny Monster Master
ユーザー のーとのーと
提出日時 2024-11-16 16:12:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 267,188 KB
最終ジャッジ日時 2024-11-16 16:13:25
合計ジャッジ時間 53,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 114 ms
267,188 KB
testcase_06 AC 103 ms
135,396 KB
testcase_07 AC 117 ms
129,528 KB
testcase_08 AC 162 ms
134,236 KB
testcase_09 AC 69 ms
85,768 KB
testcase_10 AC 151 ms
132,620 KB
testcase_11 AC 149 ms
131,920 KB
testcase_12 AC 149 ms
129,460 KB
testcase_13 AC 76 ms
76,300 KB
testcase_14 AC 174 ms
133,800 KB
testcase_15 AC 146 ms
133,040 KB
testcase_16 AC 111 ms
128,548 KB
testcase_17 AC 131 ms
110,444 KB
testcase_18 AC 158 ms
130,208 KB
testcase_19 AC 135 ms
132,216 KB
testcase_20 AC 165 ms
133,520 KB
testcase_21 AC 136 ms
132,536 KB
testcase_22 AC 67 ms
87,536 KB
testcase_23 AC 112 ms
119,320 KB
testcase_24 AC 113 ms
91,680 KB
testcase_25 AC 160 ms
132,644 KB
testcase_26 AC 166 ms
131,244 KB
testcase_27 AC 106 ms
125,556 KB
testcase_28 AC 103 ms
129,300 KB
testcase_29 AC 97 ms
114,952 KB
testcase_30 AC 130 ms
139,228 KB
testcase_31 AC 155 ms
131,600 KB
testcase_32 AC 136 ms
133,756 KB
testcase_33 AC 148 ms
135,196 KB
testcase_34 AC 142 ms
130,484 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,315 ms
129,036 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,557 ms
123,904 KB
testcase_41 AC 1,210 ms
106,968 KB
testcase_42 TLE -
testcase_43 AC 849 ms
95,232 KB
testcase_44 AC 1,776 ms
133,248 KB
testcase_45 AC 39 ms
52,608 KB
testcase_46 AC 411 ms
97,024 KB
testcase_47 AC 1,520 ms
132,096 KB
testcase_48 AC 1,050 ms
135,552 KB
testcase_49 AC 1,340 ms
113,024 KB
testcase_50 AC 1,318 ms
132,856 KB
testcase_51 AC 461 ms
103,296 KB
testcase_52 AC 471 ms
124,380 KB
testcase_53 AC 326 ms
127,744 KB
testcase_54 AC 173 ms
84,992 KB
testcase_55 AC 1,187 ms
131,840 KB
testcase_56 AC 597 ms
129,676 KB
testcase_57 AC 203 ms
125,440 KB
testcase_58 AC 1,217 ms
127,104 KB
testcase_59 AC 366 ms
131,072 KB
testcase_60 AC 346 ms
114,124 KB
testcase_61 AC 740 ms
119,040 KB
testcase_62 TLE -
testcase_63 TLE -
testcase_64 AC 92 ms
100,292 KB
testcase_65 AC 1,060 ms
133,632 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 TLE -
testcase_75 TLE -
testcase_76 TLE -
権限があれば一括ダウンロードができます

ソースコード

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


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))
		continue
	print(add(S,l%R,R-1)+add(S,0,r%R)+sum(A)*((f-g)//R))
0