結果

問題 No.2961 Shiny Monster Master
ユーザー 👑 p-adicp-adic
提出日時 2024-06-20 10:08:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 342 ms / 1,777 ms
コード長 192 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,924 KB
最終ジャッジ日時 2024-11-16 15:01:14
合計ジャッジ時間 16,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 45 ms
10,496 KB
testcase_02 AC 41 ms
10,624 KB
testcase_03 AC 39 ms
10,624 KB
testcase_04 AC 33 ms
10,496 KB
testcase_05 AC 180 ms
30,452 KB
testcase_06 AC 254 ms
43,256 KB
testcase_07 AC 209 ms
35,484 KB
testcase_08 AC 323 ms
46,248 KB
testcase_09 AC 89 ms
19,200 KB
testcase_10 AC 282 ms
45,128 KB
testcase_11 AC 248 ms
41,060 KB
testcase_12 AC 267 ms
44,964 KB
testcase_13 AC 52 ms
12,544 KB
testcase_14 AC 315 ms
46,924 KB
testcase_15 AC 188 ms
28,400 KB
testcase_16 AC 213 ms
38,240 KB
testcase_17 AC 115 ms
17,668 KB
testcase_18 AC 207 ms
32,860 KB
testcase_19 AC 192 ms
30,684 KB
testcase_20 AC 282 ms
45,812 KB
testcase_21 AC 274 ms
42,948 KB
testcase_22 AC 86 ms
19,200 KB
testcase_23 AC 131 ms
20,872 KB
testcase_24 AC 76 ms
14,212 KB
testcase_25 AC 275 ms
41,860 KB
testcase_26 AC 253 ms
39,584 KB
testcase_27 AC 161 ms
27,352 KB
testcase_28 AC 233 ms
34,520 KB
testcase_29 AC 159 ms
28,848 KB
testcase_30 AC 326 ms
50,580 KB
testcase_31 AC 237 ms
38,852 KB
testcase_32 AC 256 ms
39,848 KB
testcase_33 AC 282 ms
43,044 KB
testcase_34 AC 225 ms
38,904 KB
testcase_35 AC 296 ms
43,144 KB
testcase_36 AC 230 ms
39,424 KB
testcase_37 AC 191 ms
27,648 KB
testcase_38 AC 201 ms
34,432 KB
testcase_39 AC 281 ms
44,372 KB
testcase_40 AC 182 ms
30,392 KB
testcase_41 AC 159 ms
24,448 KB
testcase_42 AC 260 ms
36,588 KB
testcase_43 AC 110 ms
20,480 KB
testcase_44 AC 239 ms
33,192 KB
testcase_45 AC 28 ms
10,624 KB
testcase_46 AC 96 ms
16,824 KB
testcase_47 AC 320 ms
49,780 KB
testcase_48 AC 270 ms
45,952 KB
testcase_49 AC 156 ms
27,420 KB
testcase_50 AC 267 ms
43,020 KB
testcase_51 AC 104 ms
17,864 KB
testcase_52 AC 174 ms
30,520 KB
testcase_53 AC 204 ms
32,420 KB
testcase_54 AC 77 ms
16,448 KB
testcase_55 AC 301 ms
47,432 KB
testcase_56 AC 223 ms
31,016 KB
testcase_57 AC 177 ms
28,052 KB
testcase_58 AC 201 ms
34,148 KB
testcase_59 AC 233 ms
36,568 KB
testcase_60 AC 128 ms
21,920 KB
testcase_61 AC 154 ms
27,844 KB
testcase_62 AC 330 ms
48,864 KB
testcase_63 AC 323 ms
49,236 KB
testcase_64 AC 107 ms
18,864 KB
testcase_65 AC 268 ms
36,524 KB
testcase_66 AC 31 ms
10,624 KB
testcase_67 AC 38 ms
10,624 KB
testcase_68 AC 30 ms
10,624 KB
testcase_69 AC 34 ms
10,624 KB
testcase_70 AC 34 ms
10,496 KB
testcase_71 AC 31 ms
10,624 KB
testcase_72 AC 36 ms
10,496 KB
testcase_73 AC 35 ms
10,752 KB
testcase_74 AC 336 ms
50,924 KB
testcase_75 AC 332 ms
50,116 KB
testcase_76 AC 342 ms
50,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
J=lambda:map(int,I().split())
P,N=J()
H=[0]*(P+1)
for a in J():H[a+1]+=1
for i in R(1,P):H[i+1]+=H[i]
for _ in R(int(I())):l,r=J();d=l-l%P;r-=d;print(r//P*H[P]-H[l-d]+H[r%P+1])
0