結果

問題 No.2961 Shiny Monster Master
ユーザー Meso MesoMeso Meso
提出日時 2024-11-16 19:26:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 100 ms / 1,777 ms
コード長 494 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,044 KB
最終ジャッジ日時 2024-11-16 19:26:45
合計ジャッジ時間 7,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,624 KB
testcase_01 AC 46 ms
10,624 KB
testcase_02 AC 38 ms
10,624 KB
testcase_03 AC 42 ms
10,752 KB
testcase_04 AC 41 ms
10,624 KB
testcase_05 AC 57 ms
15,464 KB
testcase_06 AC 40 ms
12,288 KB
testcase_07 AC 56 ms
15,296 KB
testcase_08 AC 80 ms
17,804 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 81 ms
18,556 KB
testcase_11 AC 69 ms
15,984 KB
testcase_12 AC 57 ms
13,716 KB
testcase_13 AC 34 ms
10,624 KB
testcase_14 AC 69 ms
17,256 KB
testcase_15 AC 82 ms
17,948 KB
testcase_16 AC 42 ms
12,416 KB
testcase_17 AC 83 ms
18,176 KB
testcase_18 AC 86 ms
18,404 KB
testcase_19 AC 84 ms
19,436 KB
testcase_20 AC 85 ms
17,380 KB
testcase_21 AC 76 ms
18,636 KB
testcase_22 AC 36 ms
11,904 KB
testcase_23 AC 79 ms
19,016 KB
testcase_24 AC 63 ms
14,644 KB
testcase_25 AC 71 ms
16,288 KB
testcase_26 AC 84 ms
18,104 KB
testcase_27 AC 59 ms
16,268 KB
testcase_28 AC 55 ms
15,832 KB
testcase_29 AC 40 ms
12,672 KB
testcase_30 AC 69 ms
17,760 KB
testcase_31 AC 69 ms
16,080 KB
testcase_32 AC 72 ms
16,436 KB
testcase_33 AC 86 ms
19,968 KB
testcase_34 AC 62 ms
14,460 KB
testcase_35 AC 94 ms
19,276 KB
testcase_36 AC 52 ms
12,288 KB
testcase_37 AC 93 ms
19,448 KB
testcase_38 AC 57 ms
12,800 KB
testcase_39 AC 64 ms
14,768 KB
testcase_40 AC 62 ms
14,468 KB
testcase_41 AC 46 ms
11,136 KB
testcase_42 AC 88 ms
18,220 KB
testcase_43 AC 47 ms
11,264 KB
testcase_44 AC 91 ms
19,376 KB
testcase_45 AC 29 ms
10,624 KB
testcase_46 AC 63 ms
14,936 KB
testcase_47 AC 63 ms
15,360 KB
testcase_48 AC 36 ms
11,264 KB
testcase_49 AC 55 ms
12,672 KB
testcase_50 AC 71 ms
17,256 KB
testcase_51 AC 73 ms
16,424 KB
testcase_52 AC 54 ms
14,628 KB
testcase_53 AC 46 ms
14,044 KB
testcase_54 AC 40 ms
12,544 KB
testcase_55 AC 67 ms
16,672 KB
testcase_56 AC 78 ms
18,696 KB
testcase_57 AC 57 ms
15,996 KB
testcase_58 AC 55 ms
13,828 KB
testcase_59 AC 69 ms
17,980 KB
testcase_60 AC 64 ms
16,612 KB
testcase_61 AC 60 ms
14,548 KB
testcase_62 AC 92 ms
19,732 KB
testcase_63 AC 66 ms
15,132 KB
testcase_64 AC 58 ms
16,132 KB
testcase_65 AC 80 ms
19,284 KB
testcase_66 AC 33 ms
10,624 KB
testcase_67 AC 43 ms
10,624 KB
testcase_68 AC 36 ms
10,752 KB
testcase_69 AC 39 ms
10,624 KB
testcase_70 AC 36 ms
10,624 KB
testcase_71 AC 32 ms
10,624 KB
testcase_72 AC 39 ms
10,752 KB
testcase_73 AC 38 ms
10,624 KB
testcase_74 AC 97 ms
20,236 KB
testcase_75 AC 100 ms
21,044 KB
testcase_76 AC 100 ms
20,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

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

for i in range(q):
    l, r = map(int, input().split())
    if l // R == r // R:
        cntl = bisect.bisect_left(A, l%R)
        cntr = bisect.bisect_right(A, r%R)
        print(cntr - cntl)
    else:
        ans = ((r // R) - (l // R) - 1) * N
        cntl = bisect.bisect_left(A, l%R)
        cntr = bisect.bisect_right(A, r%R)
        ans += cntr + (N - cntl)
        print(ans)
0