結果

問題 No.885 アマリクエリ
ユーザー tamatotamato
提出日時 2020-02-19 15:37:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 175,728 KB
最終ジャッジ日時 2024-10-08 02:08:26
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 683 ms
175,728 KB
testcase_01 AC 446 ms
110,808 KB
testcase_02 AC 247 ms
94,336 KB
testcase_03 AC 171 ms
93,568 KB
testcase_04 AC 172 ms
94,020 KB
testcase_05 AC 134 ms
99,328 KB
testcase_06 AC 128 ms
100,352 KB
testcase_07 AC 97 ms
89,472 KB
testcase_08 AC 109 ms
90,112 KB
testcase_09 AC 453 ms
105,432 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 51 ms
52,480 KB
testcase_13 AC 94 ms
75,776 KB
testcase_14 AC 93 ms
76,760 KB
testcase_15 AC 94 ms
75,832 KB
testcase_16 AC 62 ms
67,328 KB
testcase_17 AC 62 ms
64,000 KB
testcase_18 AC 74 ms
70,144 KB
testcase_19 AC 44 ms
59,008 KB
testcase_20 AC 53 ms
62,592 KB
testcase_21 AC 56 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from heapq import heappush, heappop, heapify
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    Q = int(input())
    X = list(map(int, input().split()))

    for i in range(N):
        A[i] *= -1

    heapify(A)
    ans = -sum(A)
    for x in X:
        tmp = []
        #print(x, A)
        while A:
            a = -heappop(A)
            #print(x, a)
            if a >= x:
                ans -= a - a%x
                a = a%x
                tmp.append(a)
            else:
                heappush(A, -a)
                break
        for a in tmp:
            heappush(A, -a)
        print(ans)


if __name__ == '__main__':
    main()
0