結果

問題 No.295 hel__world
ユーザー convexineqconvexineq
提出日時 2021-01-02 11:45:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,893 ms / 5,000 ms
コード長 1,183 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 151,856 KB
最終ジャッジ日時 2024-10-12 01:35:11
合計ジャッジ時間 12,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 37 ms
52,864 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
53,120 KB
testcase_05 AC 39 ms
52,864 KB
testcase_06 AC 38 ms
52,864 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 38 ms
52,992 KB
testcase_12 AC 37 ms
52,864 KB
testcase_13 AC 37 ms
53,376 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 40 ms
52,480 KB
testcase_17 AC 38 ms
52,864 KB
testcase_18 AC 37 ms
52,864 KB
testcase_19 AC 38 ms
52,608 KB
testcase_20 AC 39 ms
52,864 KB
testcase_21 AC 38 ms
53,120 KB
testcase_22 AC 38 ms
52,736 KB
testcase_23 AC 38 ms
52,992 KB
testcase_24 AC 38 ms
52,480 KB
testcase_25 AC 55 ms
64,768 KB
testcase_26 AC 46 ms
60,032 KB
testcase_27 AC 37 ms
52,608 KB
testcase_28 AC 1,893 ms
76,416 KB
testcase_29 AC 1,886 ms
76,544 KB
testcase_30 AC 38 ms
52,608 KB
testcase_31 AC 38 ms
52,864 KB
testcase_32 AC 349 ms
148,460 KB
testcase_33 AC 300 ms
144,752 KB
testcase_34 AC 332 ms
151,856 KB
testcase_35 AC 35 ms
52,864 KB
testcase_36 AC 35 ms
52,744 KB
testcase_37 AC 37 ms
52,480 KB
testcase_38 AC 38 ms
53,248 KB
testcase_39 AC 37 ms
52,480 KB
testcase_40 AC 37 ms
52,736 KB
testcase_41 AC 38 ms
52,608 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 1,052 ms
76,288 KB
testcase_44 AC 1,041 ms
76,672 KB
testcase_45 AC 1,033 ms
76,348 KB
testcase_46 AC 38 ms
53,248 KB
testcase_47 AC 36 ms
52,992 KB
testcase_48 AC 36 ms
52,608 KB
testcase_49 AC 38 ms
53,120 KB
testcase_50 AC 52 ms
67,328 KB
testcase_51 AC 401 ms
76,560 KB
testcase_52 AC 134 ms
76,236 KB
testcase_53 AC 72 ms
78,976 KB
testcase_54 AC 75 ms
79,100 KB
testcase_55 AC 75 ms
79,232 KB
testcase_56 AC 75 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
*a, = map(int,input().split())
d = {}
t = input()+"Z"
for k,v in groupby(t):
    v = "".join(v)
    if k in d: d[k].append(len(v))
    else: d[k] = [len(v)]
V = [0]*26
from heapq import *
for i,ai in enumerate(a):
    s = chr(i+97)
    if s not in d: continue
    v = ai - sum(d[s])
    V[i] = v
    if v < 0:
        print(0)
        exit()

def hel(ans):
    if ans >= MAX:
        print("hel")
        exit()

ans = 1
MAX = 1<<62
for i,ai in enumerate(a):
    s = chr(i+97)
    if s not in d: continue
    v = V[i]
    if v==0: continue
    q = [(-(i+1.0),i,i) for i in d[s]] # 倍率、先頭、長さ
    if len(q) == 1:
        for i in range(q[0][-1]):
            ans *= ai-q[0][-1]+i+1
            ans //= i+1
            hel(ans)
        continue
    if len(q) == 2 == sum(d[s]):
        x = ai//2
        for aa in [x,ai-x]:
            ans *= aa
            hel(ans)
        continue
    if (v//len(q)) > (MAX+10)**(1/len(q)) or (v > 64 and len(q) > 64):
        hel(MAX)
    heapify(q)
    for _ in range(v):
        __,x,y = heappop(q)
        ans = ans*(y+1)//(y-x+1)
        heappush(q,(-(y+2)/(y+2-x),x,y+1))
        hel(ans)
print(ans)
0