結果

問題 No.885 アマリクエリ
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-13 03:46:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,016 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 107,240 KB
最終ジャッジ日時 2024-09-13 03:46:08
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
102,888 KB
testcase_01 AC 444 ms
96,976 KB
testcase_02 AC 224 ms
99,600 KB
testcase_03 AC 185 ms
99,592 KB
testcase_04 AC 187 ms
100,256 KB
testcase_05 AC 130 ms
100,676 KB
testcase_06 AC 126 ms
107,240 KB
testcase_07 AC 72 ms
92,508 KB
testcase_08 AC 107 ms
91,236 KB
testcase_09 AC 432 ms
96,828 KB
testcase_10 AC 39 ms
52,344 KB
testcase_11 AC 39 ms
54,020 KB
testcase_12 AC 39 ms
53,088 KB
testcase_13 AC 88 ms
76,652 KB
testcase_14 AC 90 ms
76,704 KB
testcase_15 AC 88 ms
76,424 KB
testcase_16 AC 64 ms
70,348 KB
testcase_17 AC 57 ms
65,868 KB
testcase_18 AC 70 ms
72,760 KB
testcase_19 AC 41 ms
54,400 KB
testcase_20 AC 53 ms
62,860 KB
testcase_21 AC 54 ms
64,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.885 アマリクエリ(modSum)
# https://yukicoder.me/problems/no/885
# 给定一个数组和q个查询,每个查询形如Xi,将每个数模Xi后,求数组的和。
# 查询之间互相影响。


from heapq import heappop, heappush
import sys


input = lambda: sys.stdin.readline().rstrip("\r\n")
MOD = 998244353
INF = int(4e18)

if __name__ == "__main__":
    N = int(input())
    A = list(map(int, input().split()))
    Q = int(input())
    X = list(map(int, input().split()))

    res = sum(A)
    pq = []  # 大根堆
    for v in A:
        heappush(pq, -v)

    for v in X:
        while True:
            cur = -heappop(pq)
            if cur < v:
                heappush(pq, -cur)
                break
            else:
                mod = cur % v
                res -= cur - mod
                heappush(pq, -mod)

        print(res)
0