結果

問題 No.2581 [Cherry Anniversary 3] 28輪の桜のブーケ
ユーザー rlangevinrlangevin
提出日時 2023-12-09 00:16:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 910 ms / 3,000 ms
コード長 986 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,964 KB
実行使用メモリ 78,552 KB
最終ジャッジ日時 2024-09-27 03:20:00
合計ジャッジ時間 15,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
76,864 KB
testcase_01 AC 108 ms
77,340 KB
testcase_02 AC 145 ms
77,400 KB
testcase_03 AC 439 ms
77,848 KB
testcase_04 AC 311 ms
77,820 KB
testcase_05 AC 138 ms
77,156 KB
testcase_06 AC 390 ms
77,576 KB
testcase_07 AC 402 ms
77,676 KB
testcase_08 AC 150 ms
76,916 KB
testcase_09 AC 270 ms
76,840 KB
testcase_10 AC 341 ms
76,928 KB
testcase_11 AC 155 ms
77,712 KB
testcase_12 AC 415 ms
78,088 KB
testcase_13 AC 472 ms
77,344 KB
testcase_14 AC 399 ms
76,928 KB
testcase_15 AC 419 ms
77,592 KB
testcase_16 AC 432 ms
78,552 KB
testcase_17 AC 405 ms
77,196 KB
testcase_18 AC 460 ms
77,416 KB
testcase_19 AC 516 ms
77,524 KB
testcase_20 AC 525 ms
77,464 KB
testcase_21 AC 493 ms
77,824 KB
testcase_22 AC 903 ms
77,084 KB
testcase_23 AC 910 ms
77,212 KB
testcase_24 AC 904 ms
77,724 KB
testcase_25 AC 862 ms
77,940 KB
testcase_26 AC 877 ms
77,172 KB
testcase_27 AC 54 ms
65,408 KB
testcase_28 AC 76 ms
76,800 KB
testcase_29 AC 818 ms
77,860 KB
testcase_30 AC 402 ms
77,560 KB
testcase_31 AC 448 ms
77,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

M = int(input())
G = list(map(int, input().split()))
H = list(map(int, input().split()))
G1, H1 = G[:14], H[:14]
G2, H2 = G[14:], H[14:]
D1, D2 = [[] for i in range(15)], [[] for i in range(15)]
for s in range(1 << 14):
    v1, v2 = 0, 0
    cnt = 0
    for i in range(14):
        if (s >> i) & 1:
            v1 += G1[i]
            v2 += G2[i]
            cnt += 1
        else:
            v1 += H1[i]
            v2 += H2[i]
    D1[cnt].append(v1%M)
    D2[cnt].append(v2%M)
    
for i in range(15):
    D1[i].sort()
    D2[i].sort()
    
Q = int(input())
for _ in range(Q):
    K, X = map(int, input().split())
    ans = 0
    for i in range(15):
        if K - i < 0 or K - i > 14:
            continue
        for d in D1[i]:
            ind1 = bisect_left(D2[K-i], X - d)
            ind2 = bisect_right(D2[K-i], M - d - 1)
            ind3 = bisect_left(D2[K-i], X + M - d)
            ans += ind2 - ind1 + len(D2[K-i]) - ind3
            
    print(ans)
0