結果

問題 No.885 アマリクエリ
ユーザー qibqib
提出日時 2022-11-01 01:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-07-08 13:21:22
合計ジャッジ時間 6,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 864 ms
102,656 KB
testcase_01 AC 388 ms
96,640 KB
testcase_02 AC 210 ms
100,172 KB
testcase_03 AC 162 ms
99,368 KB
testcase_04 AC 166 ms
100,320 KB
testcase_05 AC 119 ms
100,992 KB
testcase_06 AC 111 ms
107,008 KB
testcase_07 AC 67 ms
92,288 KB
testcase_08 AC 96 ms
91,136 KB
testcase_09 AC 383 ms
96,768 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 35 ms
52,992 KB
testcase_12 AC 35 ms
52,736 KB
testcase_13 AC 80 ms
76,536 KB
testcase_14 AC 83 ms
76,644 KB
testcase_15 AC 81 ms
76,592 KB
testcase_16 AC 56 ms
68,992 KB
testcase_17 AC 52 ms
65,664 KB
testcase_18 AC 66 ms
71,424 KB
testcase_19 AC 37 ms
54,016 KB
testcase_20 AC 47 ms
62,464 KB
testcase_21 AC 50 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())
a = list(map(int, input().split()))
q = int(input())
x = list(map(int, input().split()))

ans = 0
hp = []
for i in range(n):
  ans += a[i]
  heapq.heappush(hp, - a[i])

for i in range(q):
  while True:
    cur = heapq.heappop(hp)
    if - cur < x[i]:
      heapq.heappush(hp, cur)
      break
    else:
      ans -= (- cur)
      nxt = - ((- cur) % x[i])
      ans += (- nxt)
      heapq.heappush(hp, nxt)
  print(ans)
0