結果
問題 | No.603 hel__world (2) |
ユーザー | chocorusk |
提出日時 | 2020-02-23 17:06:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,241 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 97,036 KB |
最終ジャッジ日時 | 2024-10-10 04:10:25 |
合計ジャッジ時間 | 7,583 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 197 ms
97,036 KB |
testcase_01 | AC | 180 ms
89,956 KB |
testcase_02 | AC | 340 ms
91,436 KB |
testcase_03 | AC | 212 ms
90,212 KB |
testcase_04 | AC | 224 ms
90,696 KB |
testcase_05 | AC | 224 ms
90,700 KB |
testcase_06 | AC | 154 ms
89,804 KB |
testcase_07 | AC | 260 ms
90,652 KB |
testcase_08 | AC | 163 ms
89,892 KB |
testcase_09 | AC | 167 ms
89,892 KB |
testcase_10 | AC | 198 ms
90,340 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
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 | -- | - |
ソースコード
from decimal import * from fractions import Fraction getcontext().prec=40 mod=10**6+3 invs=[0]*mod invs[1]=1 for i in range(2, mod): invs[i]=mod-invs[mod%i]*(mod//i)%mod def solve(x, v): m=len(v) if m==0: return 1 s=sum(v) if x<s: return 0 elif x==s: return 1 l=Decimal(1) r=Decimal(max(v)+2) for _ in range(100): mid=(l+r)/Decimal(2) cnt=0 for a in v: cnt+=int(Decimal(a)/(mid-Decimal(1))) if cnt<x-s: r=mid else: l=mid ret=1 cnt=0 f=Fraction(10**19, 1) for a in v: k=int(Decimal(a)/(l-Decimal(1))) f=min(f, Fraction(a+k, k)) cnt+=k for i in range(a): ret=ret*(k+i+1)*invs[i+1]%mod p=f.numerator q=f.denominator ret*=pow(q, cnt-(x-s), mod)*pow(p, mod-1-(cnt-(x-s))%(mod-1), mod) ret%=mod return ret v=[[] for i in range(26)] x=list(map(int, input().split())) t=input() n=len(t) cnt=1 for i in range(1, n): if t[i]!=t[i-1]: v[ord(t[i-1])-ord('a')].append(cnt) cnt=0 cnt+=1 v[ord(t[n-1])-ord('a')].append(cnt) ans=1 for i in range(26): a=solve(x[i], v[i]) #print(a) ans=ans*a%mod print(ans)