結果

問題 No.2961 Shiny Monster Master
ユーザー lif4635lif4635
提出日時 2024-11-16 15:38:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 1,777 ms
コード長 787 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-11-16 15:38:13
合計ジャッジ時間 10,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
67,968 KB
testcase_01 AC 106 ms
76,800 KB
testcase_02 AC 94 ms
76,800 KB
testcase_03 AC 103 ms
76,416 KB
testcase_04 AC 55 ms
61,568 KB
testcase_05 AC 74 ms
73,344 KB
testcase_06 AC 65 ms
65,536 KB
testcase_07 AC 86 ms
77,056 KB
testcase_08 AC 127 ms
84,992 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 107 ms
86,016 KB
testcase_11 AC 117 ms
82,304 KB
testcase_12 AC 111 ms
78,848 KB
testcase_13 AC 81 ms
69,248 KB
testcase_14 AC 124 ms
84,096 KB
testcase_15 AC 128 ms
86,400 KB
testcase_16 AC 68 ms
68,608 KB
testcase_17 AC 126 ms
86,272 KB
testcase_18 AC 128 ms
86,272 KB
testcase_19 AC 109 ms
87,680 KB
testcase_20 AC 119 ms
84,352 KB
testcase_21 AC 100 ms
83,200 KB
testcase_22 AC 54 ms
62,976 KB
testcase_23 AC 122 ms
85,120 KB
testcase_24 AC 119 ms
81,024 KB
testcase_25 AC 118 ms
82,432 KB
testcase_26 AC 131 ms
86,016 KB
testcase_27 AC 74 ms
74,496 KB
testcase_28 AC 66 ms
71,424 KB
testcase_29 AC 66 ms
67,840 KB
testcase_30 AC 78 ms
78,208 KB
testcase_31 AC 124 ms
82,432 KB
testcase_32 AC 103 ms
83,712 KB
testcase_33 AC 108 ms
87,936 KB
testcase_34 AC 112 ms
80,000 KB
testcase_35 AC 132 ms
86,656 KB
testcase_36 AC 108 ms
76,416 KB
testcase_37 AC 135 ms
87,936 KB
testcase_38 AC 114 ms
77,696 KB
testcase_39 AC 127 ms
80,128 KB
testcase_40 AC 127 ms
80,512 KB
testcase_41 AC 119 ms
76,928 KB
testcase_42 AC 154 ms
86,016 KB
testcase_43 AC 106 ms
76,160 KB
testcase_44 AC 130 ms
87,680 KB
testcase_45 AC 39 ms
51,968 KB
testcase_46 AC 110 ms
80,896 KB
testcase_47 AC 96 ms
81,280 KB
testcase_48 AC 67 ms
66,944 KB
testcase_49 AC 112 ms
76,928 KB
testcase_50 AC 102 ms
84,608 KB
testcase_51 AC 118 ms
82,364 KB
testcase_52 AC 72 ms
73,472 KB
testcase_53 AC 71 ms
69,632 KB
testcase_54 AC 62 ms
67,456 KB
testcase_55 AC 90 ms
80,640 KB
testcase_56 AC 102 ms
84,352 KB
testcase_57 AC 74 ms
72,960 KB
testcase_58 AC 116 ms
78,976 KB
testcase_59 AC 81 ms
79,488 KB
testcase_60 AC 83 ms
78,976 KB
testcase_61 AC 92 ms
79,872 KB
testcase_62 AC 130 ms
87,936 KB
testcase_63 AC 116 ms
81,024 KB
testcase_64 AC 63 ms
70,656 KB
testcase_65 AC 116 ms
87,936 KB
testcase_66 AC 66 ms
63,104 KB
testcase_67 AC 111 ms
76,544 KB
testcase_68 AC 66 ms
65,664 KB
testcase_69 AC 100 ms
76,160 KB
testcase_70 AC 71 ms
68,352 KB
testcase_71 AC 57 ms
62,848 KB
testcase_72 AC 99 ms
76,288 KB
testcase_73 AC 99 ms
76,416 KB
testcase_74 AC 146 ms
89,856 KB
testcase_75 AC 148 ms
90,112 KB
testcase_76 AC 142 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""input"""
#int-input
# input = sys.stdin.readline
def II(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(MI())
#str-input
def SI(): return input()
def MSI(): return input().split()
def SI_L(): return list(SI())
def SI_LI(): return list(map(int, SI()))
#multiple-input
def LLI(n): return [LI() for _ in range(n)]
def LSI(n): return [SI() for _ in range(n)]
#1-indexを0-indexでinput
def MI_1(): return map(lambda x:int(x)-1, input().split())
def TI_1(): return tuple(MI_1())
def LI_1(): return list(MI_1())

loop,n = MI()
a = LI()
a.sort()
q = II()

from bisect import bisect

c = len(a)
for i in range(q):
    l,r = MI()
    l -= 1
    ans = c * (r//loop) + bisect(a,r%loop)
    ans -= c * (l//loop) + bisect(a,l%loop)
    
    print(ans)
    
0