結果

問題 No.885 アマリクエリ
ユーザー stngstng
提出日時 2022-08-08 13:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 785 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,392 KB
最終ジャッジ日時 2024-09-19 00:20:57
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 785 ms
92,800 KB
testcase_01 AC 368 ms
94,080 KB
testcase_02 AC 202 ms
94,208 KB
testcase_03 AC 91 ms
93,552 KB
testcase_04 AC 86 ms
92,896 KB
testcase_05 AC 82 ms
92,604 KB
testcase_06 AC 78 ms
90,320 KB
testcase_07 AC 61 ms
86,144 KB
testcase_08 AC 72 ms
85,736 KB
testcase_09 AC 369 ms
94,392 KB
testcase_10 AC 35 ms
52,280 KB
testcase_11 AC 35 ms
53,164 KB
testcase_12 AC 33 ms
53,628 KB
testcase_13 AC 80 ms
76,696 KB
testcase_14 AC 86 ms
76,672 KB
testcase_15 AC 83 ms
76,544 KB
testcase_16 AC 43 ms
60,032 KB
testcase_17 AC 52 ms
65,792 KB
testcase_18 AC 79 ms
75,904 KB
testcase_19 AC 37 ms
53,632 KB
testcase_20 AC 39 ms
59,520 KB
testcase_21 AC 38 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(input())
a = [int(i) for i in input().split()]
q = int(input())
x = [int(i) for i in input().split()]

qry = x[0]
li = []
heapq.heapify(li)
now = 0
for i in range(n):
    tmp = a[i] % qry
    if tmp != 0:
        now += tmp
        heapq.heappush(li,-tmp)

print(now)

for i in range(q-1):
    qry = x[i+1]
    f = True
    while len(li) and f == True:
        tmp = heapq.heappop(li)
        if -tmp >= qry:
            now -= -tmp
            tmp = (-tmp) % qry
            now += tmp
            if tmp != 0:
                heapq.heappush(li,-tmp)
        else:
            f = False
            heapq.heappush(li,tmp)
    print(now)
0