結果

問題 No.2581 [Cherry Anniversary 3] 28輪の桜のブーケ
ユーザー 👑 rin204rin204
提出日時 2023-12-09 13:06:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,066 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-09-27 03:34:51
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
85,248 KB
testcase_01 AC 180 ms
85,248 KB
testcase_02 AC 207 ms
86,144 KB
testcase_03 AC 253 ms
85,760 KB
testcase_04 AC 226 ms
86,016 KB
testcase_05 AC 199 ms
86,016 KB
testcase_06 AC 240 ms
85,888 KB
testcase_07 AC 236 ms
86,016 KB
testcase_08 AC 204 ms
86,016 KB
testcase_09 AC 222 ms
85,888 KB
testcase_10 AC 242 ms
85,888 KB
testcase_11 AC 213 ms
85,888 KB
testcase_12 AC 252 ms
86,144 KB
testcase_13 AC 252 ms
85,760 KB
testcase_14 AC 247 ms
86,016 KB
testcase_15 AC 248 ms
86,272 KB
testcase_16 AC 244 ms
85,888 KB
testcase_17 AC 245 ms
86,144 KB
testcase_18 AC 252 ms
86,016 KB
testcase_19 AC 253 ms
85,888 KB
testcase_20 AC 253 ms
86,144 KB
testcase_21 AC 253 ms
86,016 KB
testcase_22 AC 289 ms
86,016 KB
testcase_23 AC 292 ms
86,144 KB
testcase_24 AC 288 ms
86,016 KB
testcase_25 AC 285 ms
86,144 KB
testcase_26 AC 288 ms
85,760 KB
testcase_27 AC 171 ms
85,504 KB
testcase_28 AC 181 ms
85,248 KB
testcase_29 AC 295 ms
85,760 KB
testcase_30 WA -
testcase_31 AC 249 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

M = int(input())
n = 28
G = list(map(int, input().split()))
H = list(map(int, input().split()))

l = 18
L = [[] for _ in range(l + 1)]
for bit in range(1 << l):
    pc = 0
    tot = 0
    for i in range(l):
        if bit >> i & 1:
            pc += 1
            tot += G[i]
        else:
            tot += H[i]
    L[pc].append(tot % M)

for i in range(l + 1):
    L[i].sort()

R = []
for bit in range(1 << (n - l)):
    pc = 0
    tot = 0
    for i in range(n - l):
        if bit >> i & 1:
            pc += 1
            tot += G[i + l]
        else:
            tot += H[i + l]
    R.append((pc, tot % M))

Q = int(input())
for _ in range(Q):
    k, x = map(int, input().split())
    ans = 0
    for kk, vv in R:
        t = k - kk
        if t < 0 or l < t:
            continue
        low = (x - vv) % M
        upp = M - vv
        if low <= upp:
            ans += bisect_left(L[t], upp) - bisect_left(L[t], low)
        else:
            ans += bisect_left(L[t], upp) + len(L[t]) - bisect_left(L[t], low)

    print(ans)
0