首页 > TAG信息列表 > 479
[AcWing 479] 加分二叉树
点击查看代码 #include<iostream> #include<cstring> using namespace std; typedef long long LL; const int N = 50; int n; int w[N]; int f[N][N], g[N][N]; void dfs(int l, int r) { if (l > r) return; int root = g[l][r]; cout &l力扣479(java)-最大回文数乘积(困难)
题目: 给定一个整数 n ,返回 可表示为两个 n 位整数乘积的 最大回文整数 。因为答案可能非常大,所以返回它对 1337 取余 。 示例 1: 输入:n = 2输出:987解释:99 x 91 = 9009, 9009 % 1337 = 987示例 2: 输入: n = 1输出: 9 提示: 1 <= n <= 8 来源:力扣(LeetCode)链接:https://leetcode.LeetCode 479. 最大回文数乘积.md
中文题面:给定一个整数 n ,返回可表示为两个 n 位整数乘积的 最大回文整数 。因为答案可能非常大,所以返回它对 1337 取余 。 英文题面:Given an integer n, return the largest palindromic integer that can be represented as the product of two n-digits integers. Since the ans479. 最大回文数乘积
479. 最大回文数乘积 - 力扣(LeetCode) (leetcode-cn.com) 给定一个整数 n ,返回 可表示为两个 n 位整数乘积的 最大回文整数 。因为答案可能非常大,所以返回它对 1337 取余 。 示例 1: 输入:n = 2 输出:987 解释:99 x 91 = 9009, 9009 % 1337 = 987 示例 2: 输入: n = 1 输出: 9 提示: