CSP-S 2021 T11

单选题

有如下递归代码

solve(t, n):
  if t=1 return 1
  else return 5*solve(t-1,n) mod n

solve(23,23) 的结果为( )。

(2分)