結果

問題 No.286 Modulo Discount Store
ユーザー みあえみあえ
提出日時 2024-04-03 22:03:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 78,776 KB
最終ジャッジ日時 2024-10-01 00:07:16
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 75 ms
72,192 KB
testcase_02 AC 221 ms
77,604 KB
testcase_03 AC 41 ms
58,624 KB
testcase_04 AC 51 ms
62,720 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 301 ms
77,900 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 182 ms
77,824 KB
testcase_11 AC 40 ms
58,624 KB
testcase_12 AC 41 ms
58,368 KB
testcase_13 AC 239 ms
77,440 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 35 ms
52,224 KB
testcase_16 AC 71 ms
72,576 KB
testcase_17 AC 550 ms
78,776 KB
testcase_18 AC 179 ms
77,676 KB
testcase_19 AC 35 ms
52,352 KB
testcase_20 AC 125 ms
77,384 KB
testcase_21 AC 37 ms
52,608 KB
testcase_22 AC 36 ms
52,864 KB
testcase_23 AC 222 ms
77,544 KB
testcase_24 AC 36 ms
52,352 KB
testcase_25 AC 139 ms
77,340 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 147 ms
77,504 KB
testcase_28 AC 317 ms
78,084 KB
testcase_29 AC 37 ms
52,280 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 103 ms
77,056 KB
testcase_32 AC 101 ms
76,868 KB
testcase_33 AC 36 ms
52,352 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 72 ms
72,576 KB
testcase_36 AC 36 ms
52,608 KB
testcase_37 AC 143 ms
77,020 KB
testcase_38 AC 35 ms
52,480 KB
testcase_39 AC 306 ms
78,232 KB
testcase_40 AC 35 ms
51,968 KB
testcase_41 AC 36 ms
52,480 KB
testcase_42 AC 35 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, A):
    dp = [float("inf")] * (1 << N)
    dp[0] = 0
    for V in range(1 << N):
        for i in range(N):
            if (V >> i) & 1:
                continue
            VV = V | (1 << i)
            r = (
                sum(a for b, a in zip(list(f"{V:0{N}b}"[::-1]), A) if b == "1")
                % 1000
            )
            buy = max(0, A[i] - r)
            dp[VV] = min(dp[VV], dp[V] + buy)

    return dp[-1]


def main():
    N = int(input())
    A = [int(input()) for _ in range(N)]
    ans = solve(N, A)
    print(ans)


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