結果

問題 No.1782 ManyCoins
ユーザー chineristACchineristAC
提出日時 2021-12-11 23:12:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,621 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 114,904 KB
最終ジャッジ日時 2024-07-20 06:31:04
合計ジャッジ時間 14,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,552 KB
testcase_01 AC 59 ms
65,536 KB
testcase_02 AC 47 ms
55,808 KB
testcase_03 AC 47 ms
55,808 KB
testcase_04 AC 47 ms
55,808 KB
testcase_05 AC 46 ms
55,680 KB
testcase_06 AC 47 ms
55,552 KB
testcase_07 AC 47 ms
55,936 KB
testcase_08 AC 46 ms
56,064 KB
testcase_09 AC 46 ms
55,552 KB
testcase_10 AC 47 ms
55,808 KB
testcase_11 AC 52 ms
55,424 KB
testcase_12 AC 46 ms
56,192 KB
testcase_13 AC 212 ms
92,288 KB
testcase_14 AC 513 ms
112,256 KB
testcase_15 AC 380 ms
95,872 KB
testcase_16 AC 457 ms
102,016 KB
testcase_17 AC 548 ms
110,720 KB
testcase_18 AC 404 ms
104,448 KB
testcase_19 AC 51 ms
62,592 KB
testcase_20 AC 691 ms
107,392 KB
testcase_21 AC 799 ms
113,792 KB
testcase_22 AC 1,182 ms
112,276 KB
testcase_23 AC 969 ms
110,208 KB
testcase_24 AC 67 ms
77,312 KB
testcase_25 AC 1,326 ms
113,064 KB
testcase_26 AC 378 ms
93,056 KB
testcase_27 AC 1,621 ms
114,904 KB
testcase_28 AC 64 ms
77,824 KB
testcase_29 AC 131 ms
92,288 KB
testcase_30 AC 159 ms
98,304 KB
testcase_31 AC 178 ms
98,048 KB
testcase_32 AC 194 ms
98,304 KB
testcase_33 AC 280 ms
98,176 KB
testcase_34 AC 267 ms
98,688 KB
testcase_35 AC 474 ms
98,356 KB
testcase_36 AC 116 ms
91,904 KB
testcase_37 AC 88 ms
82,432 KB
testcase_38 AC 78 ms
82,560 KB
testcase_39 AC 70 ms
70,656 KB
testcase_40 AC 73 ms
81,280 KB
testcase_41 AC 70 ms
77,568 KB
testcase_42 AC 71 ms
79,360 KB
testcase_43 AC 61 ms
73,216 KB
testcase_44 AC 73 ms
80,768 KB
testcase_45 AC 73 ms
79,360 KB
testcase_46 AC 83 ms
78,976 KB
testcase_47 AC 84 ms
79,232 KB
testcase_48 AC 46 ms
55,808 KB
testcase_49 AC 46 ms
55,680 KB
testcase_50 AC 65 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,L = mi()
W = li()
M = max(W)

dist = [L+1 for i in range(M)]
dist[0] = 0
deq = deque([0])
while deq:
    r = deq.popleft()
    for i in range(N):
        c = dist[r]+((r+W[i])//M)
        nr = (r+W[i])%M
        if dist[nr] > c:
            dist[nr] = c
            if c==dist[r]:
                deq.appendleft(nr)
            else:
                assert c==dist[r]+1
                deq.append(nr)

D = [i+dist[i]*M for i in range(M)]

res = 0
for r in range(M):
    if D[r] <= L:
        res += (L-D[r])//M + 1

print(res-1)

0