結果

問題 No.295 hel__world
ユーザー convexineqconvexineq
提出日時 2021-01-02 11:29:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,279 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 110,172 KB
最終ジャッジ日時 2024-10-12 01:12:53
合計ジャッジ時間 12,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,992 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 40 ms
52,864 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 42 ms
52,864 KB
testcase_12 AC 39 ms
52,992 KB
testcase_13 AC 41 ms
53,308 KB
testcase_14 AC 40 ms
52,992 KB
testcase_15 AC 41 ms
52,992 KB
testcase_16 AC 40 ms
52,864 KB
testcase_17 AC 40 ms
53,120 KB
testcase_18 AC 41 ms
52,736 KB
testcase_19 AC 40 ms
53,376 KB
testcase_20 AC 40 ms
52,736 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 40 ms
53,120 KB
testcase_23 AC 41 ms
53,248 KB
testcase_24 AC 41 ms
52,736 KB
testcase_25 AC 56 ms
64,640 KB
testcase_26 AC 49 ms
60,032 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 1,884 ms
76,672 KB
testcase_29 AC 1,915 ms
76,288 KB
testcase_30 AC 41 ms
52,992 KB
testcase_31 WA -
testcase_32 AC 214 ms
110,172 KB
testcase_33 AC 187 ms
110,048 KB
testcase_34 AC 209 ms
110,124 KB
testcase_35 AC 40 ms
52,992 KB
testcase_36 AC 40 ms
52,992 KB
testcase_37 AC 40 ms
52,352 KB
testcase_38 AC 41 ms
52,864 KB
testcase_39 AC 41 ms
52,736 KB
testcase_40 AC 40 ms
52,744 KB
testcase_41 AC 41 ms
52,864 KB
testcase_42 AC 41 ms
53,248 KB
testcase_43 AC 1,068 ms
76,288 KB
testcase_44 AC 1,064 ms
76,376 KB
testcase_45 AC 1,068 ms
76,288 KB
testcase_46 AC 41 ms
53,120 KB
testcase_47 AC 41 ms
52,992 KB
testcase_48 AC 40 ms
52,992 KB
testcase_49 AC 40 ms
52,736 KB
testcase_50 AC 58 ms
66,816 KB
testcase_51 AC 414 ms
76,544 KB
testcase_52 AC 137 ms
76,484 KB
testcase_53 AC 71 ms
78,940 KB
testcase_54 AC 72 ms
78,592 KB
testcase_55 AC 75 ms
78,976 KB
testcase_56 AC 74 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*a, = map(int,input().split())
d = {}
t = input()+"Z"
cnt = 0
now = "A"
for i in t:
    if i == now:
        cnt += 1
    else:
        if now in d: d[now].append(cnt)
        else: d[now] = [cnt]
        now = i
        cnt = 1

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-i
            ans //= i+1
            hel(ans)
        continue
    if len(q) == 2:
        if sum(d[s]) == 2:
            x = ai//2
            for aa in [x,ai-x]:
                ans *= aa
                hel(ans)
            continue
    if (v//len(q)) > (MAX+10)**(1/len(q)):
        hel(1<<64)

    if v > 64 and len(q) > 64:
        hel(1<<64)
    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