leetcode479

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode479相关的知识,希望对你有一定的参考价值。

public class Solution
    {
        public int LargestPalindrome(int n)
        {
            if (n == 1) return 9;
            int max = (int)Math.Pow(10, n) - 1;
            for (int v = max - 1; v > max / 10; v--)
            {
                StringBuilder sb = new StringBuilder();
                foreach (var c in v.ToString().Reverse())
                {
                    sb.Append(c);
                }
                long u = Convert.ToInt64(v.ToString() + sb.ToString());
                for (long x = max; x * x >= u; x--)
                    if (u % x == 0)
                        return (int)(u % 1337);
            }
            return 0;
        }
    }

https://leetcode.com/problems/largest-palindrome-product/description/

以上是关于leetcode479的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 479 - Largest Palindrome Product - Hard ( Python)

Leetcode 479.最大回文数乘积

479 Largest Palindrome Product 最大回文数乘积

479 变量提升机制

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

Codeforces Round #479 (Div. 3) 题解