結果

問題 No.2961 Shiny Monster Master
ユーザー のーとのーと
提出日時 2024-11-18 02:44:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 1,777 ms
コード長 568 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 142,028 KB
最終ジャッジ日時 2024-11-18 02:44:49
合計ジャッジ時間 11,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,720 KB
testcase_01 AC 141 ms
76,088 KB
testcase_02 AC 77 ms
74,432 KB
testcase_03 AC 81 ms
74,892 KB
testcase_04 AC 50 ms
61,824 KB
testcase_05 AC 98 ms
122,156 KB
testcase_06 AC 100 ms
134,148 KB
testcase_07 AC 109 ms
127,624 KB
testcase_08 AC 151 ms
128,972 KB
testcase_09 AC 65 ms
85,108 KB
testcase_10 AC 140 ms
126,424 KB
testcase_11 AC 138 ms
129,948 KB
testcase_12 AC 150 ms
131,248 KB
testcase_13 AC 67 ms
75,048 KB
testcase_14 AC 149 ms
128,904 KB
testcase_15 AC 131 ms
122,792 KB
testcase_16 AC 99 ms
128,192 KB
testcase_17 AC 120 ms
100,476 KB
testcase_18 AC 139 ms
127,648 KB
testcase_19 AC 126 ms
124,724 KB
testcase_20 AC 157 ms
128,608 KB
testcase_21 AC 131 ms
126,064 KB
testcase_22 AC 62 ms
85,632 KB
testcase_23 AC 106 ms
108,596 KB
testcase_24 AC 106 ms
87,408 KB
testcase_25 AC 145 ms
129,784 KB
testcase_26 AC 149 ms
128,428 KB
testcase_27 AC 95 ms
117,112 KB
testcase_28 AC 101 ms
127,820 KB
testcase_29 AC 86 ms
111,340 KB
testcase_30 AC 126 ms
130,796 KB
testcase_31 AC 147 ms
129,352 KB
testcase_32 AC 132 ms
130,284 KB
testcase_33 AC 138 ms
125,284 KB
testcase_34 AC 137 ms
131,656 KB
testcase_35 AC 156 ms
125,888 KB
testcase_36 AC 136 ms
133,620 KB
testcase_37 AC 143 ms
120,840 KB
testcase_38 AC 129 ms
127,844 KB
testcase_39 AC 158 ms
133,100 KB
testcase_40 AC 129 ms
119,884 KB
testcase_41 AC 114 ms
107,464 KB
testcase_42 AC 147 ms
128,248 KB
testcase_43 AC 104 ms
95,776 KB
testcase_44 AC 148 ms
125,688 KB
testcase_45 AC 37 ms
52,128 KB
testcase_46 AC 110 ms
93,116 KB
testcase_47 AC 137 ms
130,996 KB
testcase_48 AC 118 ms
142,028 KB
testcase_49 AC 118 ms
112,108 KB
testcase_50 AC 134 ms
127,604 KB
testcase_51 AC 118 ms
96,132 KB
testcase_52 AC 102 ms
120,208 KB
testcase_53 AC 97 ms
124,360 KB
testcase_54 AC 67 ms
81,484 KB
testcase_55 AC 130 ms
127,628 KB
testcase_56 AC 119 ms
123,444 KB
testcase_57 AC 92 ms
116,248 KB
testcase_58 AC 143 ms
124,440 KB
testcase_59 AC 113 ms
124,388 KB
testcase_60 AC 100 ms
106,020 KB
testcase_61 AC 107 ms
115,912 KB
testcase_62 AC 171 ms
134,740 KB
testcase_63 AC 149 ms
129,748 KB
testcase_64 AC 74 ms
91,408 KB
testcase_65 AC 133 ms
126,144 KB
testcase_66 AC 53 ms
61,964 KB
testcase_67 AC 81 ms
75,168 KB
testcase_68 AC 58 ms
63,260 KB
testcase_69 AC 78 ms
74,764 KB
testcase_70 AC 63 ms
66,332 KB
testcase_71 AC 52 ms
63,452 KB
testcase_72 AC 81 ms
75,060 KB
testcase_73 AC 82 ms
74,856 KB
testcase_74 AC 172 ms
138,712 KB
testcase_75 AC 170 ms
138,920 KB
testcase_76 AC 170 ms
139,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,N=map(int,input().split())
A=sorted(list(map(int,input().split())))
B=[0]*R #カウンターがiのときチャンスがあるなら1、でなければ0
for a in A:
	B[a]=1

Q=int(input())
from itertools import accumulate
S=list(accumulate(B)) 
def add(S,l,r):#累積和Sに対して a[l]+...+a[r] を返す
  if l==0:
    return S[r]
  else:
    return S[r]-S[l-1]

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