結果

問題 No.2961 Shiny Monster Master
ユーザー ねしんねしん
提出日時 2024-06-18 22:04:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 1,777 ms
コード長 409 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-11-16 15:01:01
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
69,632 KB
testcase_01 AC 115 ms
76,416 KB
testcase_02 AC 78 ms
70,408 KB
testcase_03 AC 107 ms
76,448 KB
testcase_04 AC 58 ms
63,104 KB
testcase_05 AC 75 ms
74,752 KB
testcase_06 AC 62 ms
67,200 KB
testcase_07 AC 89 ms
79,256 KB
testcase_08 AC 123 ms
85,628 KB
testcase_09 AC 59 ms
63,872 KB
testcase_10 AC 110 ms
87,004 KB
testcase_11 AC 115 ms
82,860 KB
testcase_12 AC 113 ms
79,188 KB
testcase_13 AC 82 ms
72,320 KB
testcase_14 AC 122 ms
85,376 KB
testcase_15 AC 127 ms
87,040 KB
testcase_16 AC 72 ms
69,888 KB
testcase_17 AC 127 ms
86,972 KB
testcase_18 AC 138 ms
87,168 KB
testcase_19 AC 114 ms
89,088 KB
testcase_20 AC 129 ms
84,992 KB
testcase_21 AC 98 ms
86,016 KB
testcase_22 AC 53 ms
63,520 KB
testcase_23 AC 103 ms
88,832 KB
testcase_24 AC 119 ms
81,152 KB
testcase_25 AC 120 ms
83,004 KB
testcase_26 AC 136 ms
87,168 KB
testcase_27 AC 78 ms
76,160 KB
testcase_28 AC 67 ms
71,552 KB
testcase_29 AC 73 ms
70,016 KB
testcase_30 AC 80 ms
80,000 KB
testcase_31 AC 117 ms
82,896 KB
testcase_32 AC 107 ms
83,456 KB
testcase_33 AC 108 ms
90,624 KB
testcase_34 AC 116 ms
80,768 KB
testcase_35 AC 134 ms
87,300 KB
testcase_36 AC 117 ms
77,440 KB
testcase_37 AC 142 ms
88,960 KB
testcase_38 AC 132 ms
77,672 KB
testcase_39 AC 125 ms
80,680 KB
testcase_40 AC 123 ms
80,384 KB
testcase_41 AC 116 ms
76,412 KB
testcase_42 AC 145 ms
87,168 KB
testcase_43 AC 127 ms
77,224 KB
testcase_44 AC 155 ms
88,780 KB
testcase_45 AC 42 ms
51,840 KB
testcase_46 AC 138 ms
81,408 KB
testcase_47 AC 113 ms
81,792 KB
testcase_48 AC 79 ms
69,376 KB
testcase_49 AC 123 ms
77,628 KB
testcase_50 AC 131 ms
85,188 KB
testcase_51 AC 129 ms
82,652 KB
testcase_52 AC 85 ms
75,008 KB
testcase_53 AC 70 ms
71,056 KB
testcase_54 AC 70 ms
68,736 KB
testcase_55 AC 102 ms
83,968 KB
testcase_56 AC 106 ms
87,296 KB
testcase_57 AC 72 ms
74,624 KB
testcase_58 AC 115 ms
78,968 KB
testcase_59 AC 86 ms
81,152 KB
testcase_60 AC 92 ms
80,768 KB
testcase_61 AC 99 ms
80,508 KB
testcase_62 AC 155 ms
88,960 KB
testcase_63 AC 140 ms
81,408 KB
testcase_64 AC 74 ms
70,656 KB
testcase_65 AC 124 ms
88,576 KB
testcase_66 AC 77 ms
64,128 KB
testcase_67 AC 143 ms
76,928 KB
testcase_68 AC 89 ms
68,992 KB
testcase_69 AC 117 ms
76,436 KB
testcase_70 AC 78 ms
70,144 KB
testcase_71 AC 58 ms
62,848 KB
testcase_72 AC 116 ms
76,896 KB
testcase_73 AC 114 ms
76,204 KB
testcase_74 AC 150 ms
90,496 KB
testcase_75 AC 159 ms
90,496 KB
testcase_76 AC 154 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
R,N=list(map(int,input().split()))
A=list(map(int,input().split()))
A=sorted(A)
Q=int(input())
for i in range(Q):
  l,r=list(map(int,input().split()))
  if l//R==r//R:
    cl=bisect.bisect_left(A,l%R)
    cr=bisect.bisect_right(A,r%R)
    print(cr-cl)
  else:
    ans=((r//R)-(l//R)-1)*N
    cl=bisect.bisect_left(A,l%R)
    cr=bisect.bisect_right(A,r%R)    
    ans=ans+cr+(N-cl)
    print(ans)
0