結果
問題 | No.295 hel__world |
ユーザー | convexineq |
提出日時 | 2021-01-02 11:07:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 82,136 KB |
実行使用メモリ | 82,596 KB |
最終ジャッジ日時 | 2024-10-12 00:50:09 |
合計ジャッジ時間 | 7,810 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,720 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 41 ms
52,480 KB |
testcase_03 | AC | 40 ms
52,224 KB |
testcase_04 | AC | 41 ms
52,480 KB |
testcase_05 | AC | 40 ms
52,480 KB |
testcase_06 | AC | 40 ms
52,992 KB |
testcase_07 | AC | 40 ms
52,352 KB |
testcase_08 | AC | 41 ms
52,480 KB |
testcase_09 | AC | 40 ms
52,608 KB |
testcase_10 | AC | 43 ms
52,992 KB |
testcase_11 | AC | 41 ms
52,608 KB |
testcase_12 | AC | 41 ms
52,480 KB |
testcase_13 | AC | 42 ms
52,864 KB |
testcase_14 | AC | 40 ms
52,352 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
*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() 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 v > 64 and len(q) > 64: print("hel") exit() 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)) if ans >= MAX: print("hel") exit() print(ans)