結果

問題 No.2961 Shiny Monster Master
ユーザー のーとのーと
提出日時 2024-11-16 16:20:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,422 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 141,312 KB
最終ジャッジ日時 2024-11-16 16:21:31
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 112 ms
125,568 KB
testcase_06 AC 123 ms
135,040 KB
testcase_07 AC 125 ms
131,200 KB
testcase_08 AC 167 ms
133,760 KB
testcase_09 AC 73 ms
84,224 KB
testcase_10 AC 157 ms
135,680 KB
testcase_11 AC 156 ms
133,760 KB
testcase_12 AC 155 ms
132,992 KB
testcase_13 AC 74 ms
74,240 KB
testcase_14 AC 169 ms
133,888 KB
testcase_15 AC 141 ms
127,744 KB
testcase_16 AC 118 ms
134,272 KB
testcase_17 AC 132 ms
105,856 KB
testcase_18 AC 149 ms
132,608 KB
testcase_19 AC 134 ms
130,688 KB
testcase_20 AC 169 ms
133,504 KB
testcase_21 AC 142 ms
131,328 KB
testcase_22 AC 69 ms
85,760 KB
testcase_23 AC 116 ms
114,560 KB
testcase_24 AC 107 ms
89,600 KB
testcase_25 AC 195 ms
134,016 KB
testcase_26 AC 163 ms
134,272 KB
testcase_27 AC 108 ms
122,496 KB
testcase_28 AC 116 ms
131,328 KB
testcase_29 AC 99 ms
112,896 KB
testcase_30 AC 148 ms
136,192 KB
testcase_31 AC 158 ms
133,632 KB
testcase_32 AC 145 ms
134,912 KB
testcase_33 AC 152 ms
135,680 KB
testcase_34 AC 153 ms
134,016 KB
testcase_35 AC 172 ms
131,456 KB
testcase_36 AC 148 ms
133,888 KB
testcase_37 AC 150 ms
126,592 KB
testcase_38 AC 146 ms
128,768 KB
testcase_39 AC 160 ms
134,912 KB
testcase_40 AC 139 ms
122,112 KB
testcase_41 AC 126 ms
107,136 KB
testcase_42 AC 158 ms
133,376 KB
testcase_43 AC 114 ms
95,488 KB
testcase_44 AC 156 ms
131,328 KB
testcase_45 AC 39 ms
51,840 KB
testcase_46 AC 122 ms
95,360 KB
testcase_47 AC 160 ms
134,144 KB
testcase_48 AC 135 ms
141,312 KB
testcase_49 AC 132 ms
113,024 KB
testcase_50 AC 149 ms
133,120 KB
testcase_51 AC 122 ms
100,352 KB
testcase_52 AC 113 ms
122,368 KB
testcase_53 AC 110 ms
126,080 KB
testcase_54 AC 74 ms
82,560 KB
testcase_55 AC 150 ms
136,704 KB
testcase_56 AC 122 ms
128,896 KB
testcase_57 AC 102 ms
120,704 KB
testcase_58 AC 140 ms
125,696 KB
testcase_59 AC 126 ms
133,632 KB
testcase_60 AC 107 ms
110,720 KB
testcase_61 AC 120 ms
117,376 KB
testcase_62 AC 194 ms
135,392 KB
testcase_63 AC 174 ms
132,096 KB
testcase_64 AC 79 ms
95,616 KB
testcase_65 AC 146 ms
131,840 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 192 ms
140,072 KB
testcase_75 AC 191 ms
139,556 KB
testcase_76 AC 192 ms
139,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# R周期の各秒に色違いが出現するかどうかを示すリスト
is_shiny = [0] * R
for a in A:
    is_shiny[a] = 1

# 累積和リスト
from itertools import accumulate
shiny_cumsum = list(accumulate(is_shiny))

# 累積和の区間和を計算する関数
def range_sum(S, l, r):
    if l == 0:
        return S[r]
    else:
        return S[r] - S[l - 1]

# 次の R の倍数を計算する関数
def next_multiple(x, m):
    return ((x + m - 1) // m) * m

# 前の R の倍数を計算する関数
def prev_multiple(x, m):
    return (x // m) * m

# 全周期の色違い出現回数
total_shiny_per_cycle = sum(is_shiny)

# クエリ処理
Q = int(input())
for _ in range(Q):
    l, r = map(int, input().split())
    # 次の R の倍数以上の時刻
    next_g = next_multiple(l, R)
    # 前の R の倍数以下の時刻
    prev_f = prev_multiple(r, R)

    if prev_f < next_g:
        # 1周期以内に収まる場合
        print(range_sum(shiny_cumsum, l % R, r % R))
    else:
        # 1周期を超える場合
        # 部分的な計算
        left_part = range_sum(shiny_cumsum, l % R, R - 1)
        right_part = range_sum(shiny_cumsum, 0, r % R)
        # 完全な周期の回数分を加算
        full_cycles = (prev_f - next_g) // R
        print(left_part + right_part + full_cycles * total_shiny_per_cycle)
0