結果

問題 No.2961 Shiny Monster Master
ユーザー 👑 p-adicp-adic
提出日時 2024-06-20 10:13:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 1,777 ms
コード長 192 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-11-16 15:01:17
合計ジャッジ時間 8,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
64,640 KB
testcase_01 AC 83 ms
73,600 KB
testcase_02 AC 84 ms
72,576 KB
testcase_03 AC 84 ms
72,832 KB
testcase_04 AC 53 ms
60,416 KB
testcase_05 AC 65 ms
71,040 KB
testcase_06 AC 59 ms
68,864 KB
testcase_07 AC 73 ms
75,008 KB
testcase_08 AC 112 ms
87,680 KB
testcase_09 AC 55 ms
62,592 KB
testcase_10 AC 94 ms
85,888 KB
testcase_11 AC 110 ms
85,504 KB
testcase_12 AC 105 ms
84,352 KB
testcase_13 AC 66 ms
66,176 KB
testcase_14 AC 109 ms
88,064 KB
testcase_15 AC 106 ms
84,736 KB
testcase_16 AC 66 ms
70,016 KB
testcase_17 AC 102 ms
82,816 KB
testcase_18 AC 106 ms
85,632 KB
testcase_19 AC 91 ms
82,944 KB
testcase_20 AC 109 ms
87,552 KB
testcase_21 AC 83 ms
80,640 KB
testcase_22 AC 50 ms
62,720 KB
testcase_23 AC 77 ms
76,928 KB
testcase_24 AC 104 ms
79,872 KB
testcase_25 AC 110 ms
85,632 KB
testcase_26 AC 112 ms
87,040 KB
testcase_27 AC 67 ms
71,040 KB
testcase_28 AC 61 ms
70,912 KB
testcase_29 AC 63 ms
67,968 KB
testcase_30 AC 71 ms
77,824 KB
testcase_31 AC 107 ms
84,864 KB
testcase_32 AC 88 ms
81,024 KB
testcase_33 AC 87 ms
83,584 KB
testcase_34 AC 105 ms
83,840 KB
testcase_35 AC 114 ms
87,936 KB
testcase_36 AC 102 ms
81,792 KB
testcase_37 AC 109 ms
85,376 KB
testcase_38 AC 104 ms
81,280 KB
testcase_39 AC 108 ms
84,864 KB
testcase_40 AC 103 ms
82,048 KB
testcase_41 AC 95 ms
78,720 KB
testcase_42 AC 109 ms
86,656 KB
testcase_43 AC 98 ms
78,592 KB
testcase_44 AC 112 ms
86,784 KB
testcase_45 AC 38 ms
51,328 KB
testcase_46 AC 98 ms
81,152 KB
testcase_47 AC 90 ms
81,024 KB
testcase_48 AC 70 ms
71,552 KB
testcase_49 AC 99 ms
79,616 KB
testcase_50 AC 90 ms
82,816 KB
testcase_51 AC 99 ms
80,640 KB
testcase_52 AC 65 ms
71,552 KB
testcase_53 AC 60 ms
68,736 KB
testcase_54 AC 58 ms
64,640 KB
testcase_55 AC 82 ms
79,744 KB
testcase_56 AC 80 ms
78,464 KB
testcase_57 AC 62 ms
70,272 KB
testcase_58 AC 100 ms
82,304 KB
testcase_59 AC 72 ms
76,032 KB
testcase_60 AC 71 ms
73,600 KB
testcase_61 AC 82 ms
76,160 KB
testcase_62 AC 115 ms
89,856 KB
testcase_63 AC 107 ms
86,400 KB
testcase_64 AC 57 ms
67,712 KB
testcase_65 AC 93 ms
84,352 KB
testcase_66 AC 55 ms
60,672 KB
testcase_67 AC 87 ms
72,960 KB
testcase_68 AC 58 ms
61,824 KB
testcase_69 AC 83 ms
72,960 KB
testcase_70 AC 67 ms
65,280 KB
testcase_71 AC 55 ms
60,928 KB
testcase_72 AC 84 ms
72,960 KB
testcase_73 AC 85 ms
72,832 KB
testcase_74 AC 116 ms
91,264 KB
testcase_75 AC 117 ms
90,880 KB
testcase_76 AC 115 ms
91,008 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