結果

問題 No.2961 Shiny Monster Master
ユーザー titiatitia
提出日時 2024-11-22 02:53:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 107 ms / 1,777 ms
コード長 376 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,916 KB
最終ジャッジ日時 2024-11-22 02:53:11
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,496 KB
testcase_01 AC 43 ms
10,496 KB
testcase_02 AC 37 ms
10,624 KB
testcase_03 AC 41 ms
10,624 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 57 ms
15,324 KB
testcase_06 AC 40 ms
12,160 KB
testcase_07 AC 57 ms
15,152 KB
testcase_08 AC 79 ms
17,672 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 107 ms
18,292 KB
testcase_11 AC 67 ms
15,848 KB
testcase_12 AC 58 ms
13,576 KB
testcase_13 AC 36 ms
10,624 KB
testcase_14 AC 74 ms
17,252 KB
testcase_15 AC 79 ms
17,800 KB
testcase_16 AC 41 ms
12,160 KB
testcase_17 AC 80 ms
18,176 KB
testcase_18 AC 86 ms
18,260 KB
testcase_19 AC 84 ms
19,304 KB
testcase_20 AC 78 ms
17,236 KB
testcase_21 AC 78 ms
18,748 KB
testcase_22 AC 37 ms
11,776 KB
testcase_23 AC 80 ms
19,004 KB
testcase_24 AC 95 ms
14,504 KB
testcase_25 AC 73 ms
16,028 KB
testcase_26 AC 87 ms
17,960 KB
testcase_27 AC 61 ms
16,124 KB
testcase_28 AC 56 ms
15,692 KB
testcase_29 AC 42 ms
12,668 KB
testcase_30 AC 70 ms
17,740 KB
testcase_31 AC 67 ms
15,932 KB
testcase_32 AC 68 ms
16,304 KB
testcase_33 AC 86 ms
19,828 KB
testcase_34 AC 60 ms
14,192 KB
testcase_35 AC 89 ms
19,144 KB
testcase_36 AC 53 ms
12,032 KB
testcase_37 AC 94 ms
19,312 KB
testcase_38 AC 85 ms
12,800 KB
testcase_39 AC 67 ms
14,636 KB
testcase_40 AC 64 ms
14,264 KB
testcase_41 AC 46 ms
11,008 KB
testcase_42 AC 87 ms
18,216 KB
testcase_43 AC 47 ms
11,264 KB
testcase_44 AC 94 ms
19,232 KB
testcase_45 AC 27 ms
10,496 KB
testcase_46 AC 59 ms
14,792 KB
testcase_47 AC 62 ms
15,216 KB
testcase_48 AC 38 ms
11,136 KB
testcase_49 AC 55 ms
12,800 KB
testcase_50 AC 72 ms
17,128 KB
testcase_51 AC 69 ms
16,284 KB
testcase_52 AC 54 ms
14,484 KB
testcase_53 AC 47 ms
13,656 KB
testcase_54 AC 44 ms
12,544 KB
testcase_55 AC 76 ms
16,656 KB
testcase_56 AC 79 ms
18,600 KB
testcase_57 AC 59 ms
15,980 KB
testcase_58 AC 56 ms
13,504 KB
testcase_59 AC 73 ms
17,704 KB
testcase_60 AC 66 ms
16,464 KB
testcase_61 AC 61 ms
14,280 KB
testcase_62 AC 97 ms
19,604 KB
testcase_63 AC 67 ms
14,864 KB
testcase_64 AC 58 ms
15,940 KB
testcase_65 AC 82 ms
19,152 KB
testcase_66 AC 34 ms
10,496 KB
testcase_67 AC 41 ms
10,496 KB
testcase_68 AC 35 ms
10,496 KB
testcase_69 AC 40 ms
10,624 KB
testcase_70 AC 36 ms
10,496 KB
testcase_71 AC 45 ms
10,496 KB
testcase_72 AC 40 ms
10,624 KB
testcase_73 AC 39 ms
10,624 KB
testcase_74 AC 98 ms
20,088 KB
testcase_75 AC 99 ms
20,916 KB
testcase_76 AC 97 ms
20,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect

R,N=map(int,input().split())

A=list(map(int,input().split()))
A.sort()
ko=len(A)
Q=int(input())

for tests in range(Q):
    l,r=map(int,input().split())
    ANS=(r-l)//R*ko
    l=l%R
    r=r%R

    if l<=r:
        ANS+=bisect(A,r)-bisect_left(A,l)
    else:
        ANS+=ko-bisect_left(A,l)
        ANS+=bisect(A,r)

    print(ANS)


0