結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | Risen |
提出日時 | 2017-06-10 15:44:58 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,750 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 111,936 KB |
実行使用メモリ | 36,900 KB |
最終ジャッジ日時 | 2024-09-24 15:39:12 |
合計ジャッジ時間 | 3,808 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
36,900 KB |
testcase_01 | AC | 30 ms
25,632 KB |
testcase_02 | AC | 32 ms
25,516 KB |
testcase_03 | AC | 31 ms
25,816 KB |
testcase_04 | AC | 32 ms
25,564 KB |
testcase_05 | AC | 30 ms
25,924 KB |
testcase_06 | AC | 32 ms
25,820 KB |
testcase_07 | AC | 32 ms
25,784 KB |
testcase_08 | AC | 31 ms
25,568 KB |
testcase_09 | AC | 32 ms
25,824 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;using System.Linq;class Solution{static ulong GetPalindromeCount(string n, ulong mod){ulong result = 0;// 全桁を使うパターンvar front = n.Substring(0, (n.Length + 1) / 2);var back = n.Substring(n.Length / 2, (n.Length + 1) / 2);// 100...0からhalfを数えるvar count = ulong.Parse(front.Substring(0, 1)) - 1;foreach (var c in front.Skip(1)){count *= 10;count %= mod;count += ulong.Parse(c.ToString());count %= mod;}result += count + 1;result %= mod;// reverse > back であればhalfは回文にできない.数えたものから減らすvar reverse = new string(front.Reverse().ToArray());if (reverse.CompareTo(back) > 0){result--;}// 最上位の桁を使わないパターンresult += GetPalindromeCount0(n.Length - 1, mod);result %= mod;return result;}// digits桁の数について,回文のバリエーションを得るstatic ulong GetPalindromeCount0(int digits, ulong mod){if (digits == 0){return 0;}var pal = (9UL * Enumerable.Repeat(10, (digits - 1) / 2).Aggregate(1UL, (prod, next) => (prod * (ulong)next) % mod)) % mod;return (pal + GetPalindromeCount0(digits - 1, mod)) % mod;}static void Main(){var dividers = new ulong[] { 1000000000, 1000000007 };var n = Console.ReadLine();foreach (var div in dividers){var pal = GetPalindromeCount(n, div);Console.WriteLine(pal);}}}