結果

問題 No.1782 ManyCoins
ユーザー tamatotamato
提出日時 2021-12-12 19:01:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 964 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-07-21 06:36:39
合計ジャッジ時間 10,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 53 ms
65,152 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 WA -
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 46 ms
54,144 KB
testcase_10 AC 41 ms
54,016 KB
testcase_11 AC 42 ms
54,144 KB
testcase_12 AC 43 ms
53,760 KB
testcase_13 WA -
testcase_14 AC 500 ms
113,280 KB
testcase_15 AC 268 ms
101,376 KB
testcase_16 AC 391 ms
106,752 KB
testcase_17 AC 577 ms
111,232 KB
testcase_18 AC 328 ms
108,544 KB
testcase_19 WA -
testcase_20 AC 457 ms
106,624 KB
testcase_21 AC 551 ms
113,280 KB
testcase_22 AC 715 ms
110,208 KB
testcase_23 AC 680 ms
109,568 KB
testcase_24 WA -
testcase_25 AC 463 ms
110,848 KB
testcase_26 AC 247 ms
98,068 KB
testcase_27 AC 691 ms
113,048 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 180 ms
92,444 KB
testcase_33 AC 183 ms
92,160 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 91 ms
77,184 KB
testcase_48 AC 43 ms
53,632 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10 ** 18


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, L = map(int, input().split())
    W = list(map(int, input().split()))

    W.sort()
    w_max = W[-1]

    seen = [inf] * w_max
    que = deque([(0, 0)])
    seen[0] = 0
    while que:
        v, d = que.popleft()
        if d != seen[v]:
            continue
        for w in W[:-1]:
            u = v + w
            if u < w_max:
                if d < seen[u]:
                    seen[u] = d
                    que.appendleft((u, d))
            else:
                u -= w_max
                if d + 1 < seen[u]:
                    seen[u] = d + 1
                    que.append((u, d + 1))

    ans = 0
    for i in range(w_max):
        add = L // w_max
        if L % w_max > i:
            add += 1
        add -= seen[i]
        ans += max(0, add)
    print(ans)


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