結果
問題 | No.2703 FizzBuzz Letter Counting |
ユーザー | hirayuu_yc |
提出日時 | 2024-03-15 08:07:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,511 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,016 KB |
実行使用メモリ | 90,000 KB |
最終ジャッジ日時 | 2024-09-30 15:15:36 |
合計ジャッジ時間 | 5,680 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,600 KB |
testcase_01 | AC | 37 ms
52,736 KB |
testcase_02 | AC | 43 ms
60,032 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
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 | -- | - |
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 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
ソースコード
MOD=998244353 def matrix_mul(a,b,MOD=None): ret=[[0]*len(b[0]) for i in range(len(a))] for i in range(len(a)): for j in range(len(b[0])): for k in range(len(b)): ret[i][j]+=a[i][k]*b[k][j] if MOD: ret[i][j]%=MOD return ret def matrix_pow(x,p,MOD=None): if p==0: for i in range(len(x)): for j in range(len(x)): if i==j: x[i][j]=1 else: x[i][j]=0 return x if p==1: return x if p%2==1: return matrix_mul(matrix_pow(x,p-1,MOD),x,MOD) half=matrix_pow(x,p//2,MOD) return matrix_mul(half,half,MOD) rev9=pow(9,-1,MOD) r15=[6,1,11] def rep(x): nrets=((pow(10,x,MOD)-1)*rev9)%MOD ret=nrets while nrets%15!=r15[x%3]: ret+=MOD return ret M=int(input()) num=[tuple(map(int,input().split())) for i in range(M)] S=0 N=0 for v,l in num: S+=l N*=pow(10,l,MOD*15) N+=rep(l)*v N%=MOD*15 if S<=1: ans=0 for i in range(1,N+1): if i%15==0: ans+=8 elif i%5==0: ans+=4 elif i%3==0: ans+=4 else: ans+=len(str(i)) print(ans) exit() bet=matrix_pow([[10,10,0],[0,10,0],[1,4,1]],S-2,MOD)[-1] bet[0]*=96 bet[1]*=48 bet[2]*=0 fb=[8,S,S,4,S,4,4,S,S,4,4,S,4,S,S] sz=(N+1-pow(10,S-1,MOD*15))%(MOD*15) ans=sum(bet)+(8*S+32)*(sz//15)+21 for i in range(sz%15): ans+=fb[(i+10)%15] print(ans%MOD)