結果

問題 No.1758 Lazy Segment Tree...?
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-10-16 01:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,053 ms / 8,000 ms
コード長 952 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,720 KB
最終ジャッジ日時 2024-12-12 17:24:58
合計ジャッジ時間 69,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 166 ms
76,744 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 55 ms
67,584 KB
testcase_07 AC 116 ms
76,672 KB
testcase_08 AC 100 ms
76,544 KB
testcase_09 AC 146 ms
76,860 KB
testcase_10 AC 123 ms
76,416 KB
testcase_11 AC 136 ms
76,696 KB
testcase_12 AC 149 ms
77,252 KB
testcase_13 AC 149 ms
77,248 KB
testcase_14 AC 113 ms
76,416 KB
testcase_15 AC 144 ms
76,876 KB
testcase_16 AC 131 ms
76,416 KB
testcase_17 AC 154 ms
77,076 KB
testcase_18 AC 118 ms
76,800 KB
testcase_19 AC 124 ms
76,812 KB
testcase_20 AC 122 ms
76,800 KB
testcase_21 AC 3,936 ms
80,204 KB
testcase_22 AC 3,185 ms
79,496 KB
testcase_23 AC 3,778 ms
79,716 KB
testcase_24 AC 3,187 ms
79,104 KB
testcase_25 AC 2,311 ms
78,772 KB
testcase_26 AC 3,664 ms
79,872 KB
testcase_27 AC 2,782 ms
78,808 KB
testcase_28 AC 3,953 ms
80,220 KB
testcase_29 AC 3,823 ms
80,380 KB
testcase_30 AC 4,405 ms
80,568 KB
testcase_31 AC 3,238 ms
78,808 KB
testcase_32 AC 3,658 ms
79,704 KB
testcase_33 AC 3,519 ms
80,080 KB
testcase_34 AC 3,013 ms
79,412 KB
testcase_35 AC 2,499 ms
78,404 KB
testcase_36 AC 4,751 ms
80,720 KB
testcase_37 AC 5,053 ms
80,704 KB
testcase_38 AC 4,114 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
def modpow(a,b,m):
  res=1
  while b:
    if b%2:
      res*=a
      res%=m
    a*=a
    a%=m
    b//=2
  return res
def prodmat(a,b):
  x,y,z=len(a),len(b[0]),len(b)
  c=[[0 for i in range(y)] for j in range(x)]
  for i in range(x):
    for j in range(y):
      for k in range(z):
        c[i][k]+=a[i][j]*b[j][k]
        c[i][k]%=mod
  return c
def powermat(a,k):
  x=len(a)
  b=[[0 for i in range(x)] for j in range(x)]
  for i in range(x):
    b[i][i]=1
  while k:
    if k%2:
      b=prodmat(b,a)
    a=prodmat(a,a)
    k//=2
  return b
n,q=map(int,input().split())
ans=0
for i in range(1,n):
  x=i*(n-i+1)
  y=n*(n+1)//2-x
  z=(n-i)*(n-i+1)*(n-i+2)//6
  x%=mod
  y%=mod
  z%=mod
  a=[[0 for i in range(3)] for j in range(3)]
  a[1][2]+=z
  a[2][2]+=n*(n+1)%mod
  a[0][0]+=y
  a[0][0]+=n*(n+1)//2%mod
  a[1][1]+=y
  a[1][1]+=n*(n+1)//2%mod
  a[1][0]+=x
  a[0][1]+=x
  a=powermat(a,q)
  ans+=a[0][2]
print(ans*modpow(2,mod-2,mod)%mod)
0