結果

問題 No.2961 Shiny Monster Master
ユーザー ra5anchorra5anchor
提出日時 2024-11-17 23:18:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 1,777 ms
コード長 322 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-11-17 23:18:52
合計ジャッジ時間 10,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,376 KB
testcase_01 AC 86 ms
77,000 KB
testcase_02 AC 75 ms
76,672 KB
testcase_03 AC 81 ms
76,544 KB
testcase_04 AC 49 ms
62,336 KB
testcase_05 AC 60 ms
73,856 KB
testcase_06 AC 50 ms
65,664 KB
testcase_07 AC 67 ms
76,928 KB
testcase_08 AC 103 ms
85,504 KB
testcase_09 AC 47 ms
63,744 KB
testcase_10 AC 89 ms
86,528 KB
testcase_11 AC 97 ms
82,520 KB
testcase_12 AC 90 ms
79,104 KB
testcase_13 AC 65 ms
69,888 KB
testcase_14 AC 87 ms
84,352 KB
testcase_15 AC 107 ms
86,328 KB
testcase_16 AC 53 ms
68,224 KB
testcase_17 AC 104 ms
86,528 KB
testcase_18 AC 107 ms
86,528 KB
testcase_19 AC 91 ms
88,064 KB
testcase_20 AC 102 ms
84,480 KB
testcase_21 AC 76 ms
83,584 KB
testcase_22 AC 42 ms
63,360 KB
testcase_23 AC 76 ms
85,376 KB
testcase_24 AC 98 ms
81,024 KB
testcase_25 AC 120 ms
82,640 KB
testcase_26 AC 107 ms
86,296 KB
testcase_27 AC 61 ms
75,136 KB
testcase_28 AC 55 ms
71,680 KB
testcase_29 AC 52 ms
68,224 KB
testcase_30 AC 65 ms
78,336 KB
testcase_31 AC 84 ms
82,640 KB
testcase_32 AC 83 ms
83,584 KB
testcase_33 AC 84 ms
88,352 KB
testcase_34 AC 92 ms
80,256 KB
testcase_35 AC 112 ms
86,528 KB
testcase_36 AC 91 ms
77,056 KB
testcase_37 AC 119 ms
88,112 KB
testcase_38 AC 96 ms
77,440 KB
testcase_39 AC 99 ms
80,256 KB
testcase_40 AC 97 ms
80,384 KB
testcase_41 AC 89 ms
76,928 KB
testcase_42 AC 108 ms
86,656 KB
testcase_43 AC 87 ms
76,604 KB
testcase_44 AC 114 ms
88,320 KB
testcase_45 AC 32 ms
52,096 KB
testcase_46 AC 94 ms
81,440 KB
testcase_47 AC 76 ms
81,792 KB
testcase_48 AC 54 ms
67,328 KB
testcase_49 AC 93 ms
77,184 KB
testcase_50 AC 105 ms
84,940 KB
testcase_51 AC 105 ms
82,548 KB
testcase_52 AC 61 ms
73,600 KB
testcase_53 AC 54 ms
69,248 KB
testcase_54 AC 50 ms
68,096 KB
testcase_55 AC 74 ms
80,640 KB
testcase_56 AC 77 ms
83,584 KB
testcase_57 AC 57 ms
72,704 KB
testcase_58 AC 88 ms
78,976 KB
testcase_59 AC 68 ms
79,488 KB
testcase_60 AC 68 ms
79,232 KB
testcase_61 AC 76 ms
80,248 KB
testcase_62 AC 115 ms
88,064 KB
testcase_63 AC 122 ms
81,644 KB
testcase_64 AC 53 ms
71,424 KB
testcase_65 AC 90 ms
87,956 KB
testcase_66 AC 49 ms
63,744 KB
testcase_67 AC 81 ms
76,708 KB
testcase_68 AC 53 ms
65,536 KB
testcase_69 AC 81 ms
76,928 KB
testcase_70 AC 61 ms
69,248 KB
testcase_71 AC 48 ms
62,976 KB
testcase_72 AC 83 ms
76,544 KB
testcase_73 AC 81 ms
76,872 KB
testcase_74 AC 116 ms
90,096 KB
testcase_75 AC 117 ms
90,112 KB
testcase_76 AC 138 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, N = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
Q = int(input())

import bisect
def f(x):
    res = 0
    res = x // R * N
    m = x % R
    res1 = bisect.bisect_right(A, m)
    return res + res1

for _ in range(Q):
    l, r = map(int, input().split())
    ans = f(r) - f(l-1)
    print(ans)
0