非負の整数 n に対して次のように定義された関数 F(n)、G(n)がある。F(5)の値は幾らか。 F(n): if n <= 1 then 1 else n*G(n-1) G(n): if n = 0 then 0 else n+F(n-1)