結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,552 KB
testcase_01 AC 62 ms
65,280 KB
testcase_02 AC 45 ms
55,680 KB
testcase_03 AC 50 ms
55,680 KB
testcase_04 AC 47 ms
55,424 KB
testcase_05 AC 47 ms
55,808 KB
testcase_06 AC 47 ms
55,296 KB
testcase_07 AC 50 ms
55,808 KB
testcase_08 AC 48 ms
55,936 KB
testcase_09 AC 46 ms
55,808 KB
testcase_10 AC 51 ms
55,808 KB
testcase_11 AC 51 ms
55,808 KB
testcase_12 AC 51 ms
55,680 KB
testcase_13 AC 216 ms
92,416 KB
testcase_14 AC 513 ms
112,512 KB
testcase_15 AC 393 ms
96,256 KB
testcase_16 AC 415 ms
102,400 KB
testcase_17 AC 502 ms
110,848 KB
testcase_18 AC 397 ms
104,448 KB
testcase_19 AC 52 ms
62,464 KB
testcase_20 AC 645 ms
107,392 KB
testcase_21 AC 824 ms
114,000 KB
testcase_22 AC 1,192 ms
112,240 KB
testcase_23 AC 1,006 ms
110,208 KB
testcase_24 AC 66 ms
77,568 KB
testcase_25 AC 1,211 ms
112,700 KB
testcase_26 AC 358 ms
93,056 KB
testcase_27 AC 1,667 ms
114,900 KB
testcase_28 AC 65 ms
77,696 KB
testcase_29 AC 131 ms
92,544 KB
testcase_30 AC 160 ms
98,176 KB
testcase_31 AC 173 ms
98,560 KB
testcase_32 AC 192 ms
98,048 KB
testcase_33 AC 279 ms
98,304 KB
testcase_34 AC 250 ms
98,048 KB
testcase_35 AC 472 ms
98,048 KB
testcase_36 AC 117 ms
91,520 KB
testcase_37 AC 81 ms
82,432 KB
testcase_38 AC 74 ms
82,176 KB
testcase_39 AC 64 ms
70,016 KB
testcase_40 AC 73 ms
80,768 KB
testcase_41 AC 68 ms
77,568 KB
testcase_42 AC 70 ms
79,872 KB
testcase_43 AC 61 ms
73,344 KB
testcase_44 AC 71 ms
80,512 KB
testcase_45 AC 72 ms
79,360 KB
testcase_46 AC 83 ms
79,104 KB
testcase_47 AC 85 ms
78,720 KB
testcase_48 AC 51 ms
55,424 KB
testcase_49 AC 51 ms
55,808 KB
testcase_50 AC 69 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]*M+r+W[i])//M
        nr = (r+W[i])%M
        if dist[nr] > c:
            dist[nr] = c
            if c==dist[r]:
                deq.appendleft(nr)
            else:
                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