結果
問題 | No.2703 FizzBuzz Letter Counting |
ユーザー | hirayuu_yc |
提出日時 | 2024-02-07 09:34:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,541 bytes |
コンパイル時間 | 361 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 88,832 KB |
最終ジャッジ日時 | 2024-09-30 15:12:03 |
合計ジャッジ時間 | 5,320 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,600 KB |
testcase_01 | AC | 37 ms
52,352 KB |
testcase_02 | AC | 44 ms
60,416 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 639 ms
78,848 KB |
testcase_05 | AC | 631 ms
78,720 KB |
testcase_06 | AC | 1,678 ms
81,792 KB |
testcase_07 | AC | 2,903 ms
85,504 KB |
testcase_08 | AC | 309 ms
77,440 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 1,768 ms
83,072 KB |
testcase_11 | AC | 268 ms
77,696 KB |
testcase_12 | AC | 2,347 ms
84,864 KB |
testcase_13 | AC | 878 ms
79,872 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 507 ms
78,208 KB |
testcase_18 | AC | 2,527 ms
84,608 KB |
testcase_19 | AC | 2,161 ms
83,840 KB |
testcase_20 | AC | 2,595 ms
85,504 KB |
testcase_21 | AC | 1,647 ms
82,048 KB |
testcase_22 | AC | 923 ms
79,488 KB |
testcase_23 | TLE | - |
testcase_24 | AC | 1,956 ms
82,560 KB |
testcase_25 | AC | 2,233 ms
84,096 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
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) def rep(x): if x==1: return 1 if x%2==1: return (rep(x-1)*10+1)%(MOD*15) else: half=rep(x//2) return (half*pow(10,x//2,(MOD*15))+half)%(MOD*15) 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)