結果

問題 No.2961 Shiny Monster Master
ユーザー titiatitia
提出日時 2024-11-22 02:52:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 1,777 ms
コード長 394 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,888 KB
最終ジャッジ日時 2024-11-22 02:52:33
合計ジャッジ時間 8,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
10,496 KB
testcase_01 AC 45 ms
10,624 KB
testcase_02 AC 43 ms
10,624 KB
testcase_03 AC 43 ms
10,624 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 60 ms
15,320 KB
testcase_06 AC 42 ms
12,288 KB
testcase_07 AC 62 ms
15,156 KB
testcase_08 AC 84 ms
17,544 KB
testcase_09 AC 35 ms
11,008 KB
testcase_10 AC 85 ms
18,288 KB
testcase_11 AC 74 ms
15,896 KB
testcase_12 AC 63 ms
13,568 KB
testcase_13 AC 40 ms
10,496 KB
testcase_14 AC 80 ms
17,256 KB
testcase_15 AC 87 ms
17,808 KB
testcase_16 AC 45 ms
12,160 KB
testcase_17 AC 92 ms
18,044 KB
testcase_18 AC 91 ms
18,264 KB
testcase_19 AC 93 ms
19,180 KB
testcase_20 AC 84 ms
17,368 KB
testcase_21 AC 82 ms
18,500 KB
testcase_22 AC 40 ms
11,904 KB
testcase_23 AC 85 ms
18,880 KB
testcase_24 AC 70 ms
14,760 KB
testcase_25 AC 79 ms
16,152 KB
testcase_26 AC 94 ms
17,956 KB
testcase_27 AC 67 ms
16,136 KB
testcase_28 AC 61 ms
15,560 KB
testcase_29 AC 46 ms
12,792 KB
testcase_30 AC 77 ms
17,612 KB
testcase_31 AC 94 ms
16,184 KB
testcase_32 AC 73 ms
16,428 KB
testcase_33 AC 94 ms
19,828 KB
testcase_34 AC 65 ms
14,316 KB
testcase_35 AC 98 ms
19,280 KB
testcase_36 AC 56 ms
12,288 KB
testcase_37 AC 103 ms
19,568 KB
testcase_38 AC 61 ms
12,672 KB
testcase_39 AC 72 ms
14,512 KB
testcase_40 AC 73 ms
14,260 KB
testcase_41 AC 50 ms
11,008 KB
testcase_42 AC 94 ms
18,088 KB
testcase_43 AC 51 ms
11,264 KB
testcase_44 AC 130 ms
19,492 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 67 ms
14,792 KB
testcase_47 AC 68 ms
15,472 KB
testcase_48 AC 40 ms
11,264 KB
testcase_49 AC 59 ms
12,672 KB
testcase_50 AC 78 ms
17,128 KB
testcase_51 AC 76 ms
16,156 KB
testcase_52 AC 58 ms
14,488 KB
testcase_53 AC 51 ms
13,908 KB
testcase_54 AC 45 ms
12,672 KB
testcase_55 AC 72 ms
16,528 KB
testcase_56 AC 84 ms
18,556 KB
testcase_57 AC 63 ms
15,984 KB
testcase_58 AC 58 ms
13,636 KB
testcase_59 AC 82 ms
18,348 KB
testcase_60 AC 71 ms
16,464 KB
testcase_61 AC 62 ms
14,404 KB
testcase_62 AC 108 ms
19,732 KB
testcase_63 AC 72 ms
15,120 KB
testcase_64 AC 62 ms
16,112 KB
testcase_65 AC 88 ms
19,156 KB
testcase_66 AC 36 ms
10,752 KB
testcase_67 AC 45 ms
10,624 KB
testcase_68 AC 38 ms
10,752 KB
testcase_69 AC 42 ms
10,624 KB
testcase_70 AC 38 ms
10,624 KB
testcase_71 AC 37 ms
10,496 KB
testcase_72 AC 44 ms
10,496 KB
testcase_73 AC 41 ms
10,624 KB
testcase_74 AC 106 ms
20,348 KB
testcase_75 AC 111 ms
20,888 KB
testcase_76 AC 107 ms
20,788 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())
    r+=1
    ANS=(r-l)//R*ko

    l%=R
    r%=R

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

    print(ANS)


0