結果
問題 | No.273 回文分解 |
ユーザー | Himatsubushin |
提出日時 | 2015-12-26 16:49:21 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 883 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 109,240 KB |
実行使用メモリ | 25,804 KB |
最終ジャッジ日時 | 2024-06-25 13:33:35 |
合計ジャッジ時間 | 2,652 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
21,680 KB |
testcase_01 | AC | 24 ms
23,368 KB |
testcase_02 | AC | 24 ms
25,548 KB |
testcase_03 | AC | 24 ms
25,804 KB |
testcase_04 | AC | 25 ms
23,648 KB |
testcase_05 | AC | 24 ms
25,668 KB |
testcase_06 | AC | 25 ms
23,752 KB |
testcase_07 | AC | 24 ms
21,564 KB |
testcase_08 | AC | 24 ms
23,520 KB |
testcase_09 | AC | 23 ms
23,388 KB |
testcase_10 | AC | 24 ms
23,384 KB |
testcase_11 | AC | 23 ms
23,648 KB |
testcase_12 | AC | 23 ms
21,304 KB |
testcase_13 | AC | 23 ms
23,640 KB |
testcase_14 | AC | 24 ms
23,768 KB |
testcase_15 | AC | 25 ms
21,812 KB |
testcase_16 | AC | 25 ms
23,392 KB |
testcase_17 | AC | 24 ms
21,688 KB |
testcase_18 | AC | 23 ms
23,772 KB |
testcase_19 | AC | 24 ms
25,792 KB |
testcase_20 | AC | 24 ms
23,372 KB |
testcase_21 | AC | 25 ms
23,628 KB |
testcase_22 | AC | 25 ms
25,688 KB |
testcase_23 | AC | 24 ms
21,552 KB |
testcase_24 | AC | 24 ms
23,512 KB |
testcase_25 | AC | 25 ms
23,516 KB |
testcase_26 | AC | 25 ms
25,800 KB |
testcase_27 | AC | 25 ms
23,600 KB |
testcase_28 | AC | 24 ms
23,384 KB |
testcase_29 | AC | 25 ms
23,512 KB |
testcase_30 | AC | 24 ms
23,472 KB |
testcase_31 | AC | 23 ms
23,860 KB |
testcase_32 | AC | 25 ms
23,516 KB |
testcase_33 | AC | 25 ms
23,752 KB |
testcase_34 | AC | 24 ms
23,512 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace Palindrome01 { class MainClass { static void Main(string[] args) { string sentence; int maxLength = 0; sentence = Console.ReadLine(); for (int i = 0; i < sentence.Length - 1; i++) { for (int j = i; j < sentence.Length; j++) { string temp = sentence.Substring(i, sentence.Length - j); int num = SearchPalidrome(temp, 0); if (num == sentence.Length) num -= 2; if (num > maxLength) maxLength = num; } } Console.WriteLine(maxLength); } static int SearchPalidrome(string sentence, int layer) { if (sentence.Length == 1) return ++layer; if (sentence.Length == 0) return layer; if (sentence[0] == sentence[sentence.Length - 1]) { string temp = sentence.Substring(1, sentence.Length - 2); return SearchPalidrome(temp, layer+=2); } return 0; } } }