結果
問題 | No.430 文字列検索 |
ユーザー | YoshiRyu |
提出日時 | 2016-11-10 16:04:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 217 ms / 2,000 ms |
コード長 | 2,851 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 108,544 KB |
実行使用メモリ | 60,352 KB |
最終ジャッジ日時 | 2024-11-10 00:12:44 |
合計ジャッジ時間 | 3,591 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
19,072 KB |
testcase_01 | AC | 217 ms
60,352 KB |
testcase_02 | AC | 164 ms
24,704 KB |
testcase_03 | AC | 168 ms
24,320 KB |
testcase_04 | AC | 25 ms
19,200 KB |
testcase_05 | AC | 24 ms
19,072 KB |
testcase_06 | AC | 23 ms
19,200 KB |
testcase_07 | AC | 25 ms
18,944 KB |
testcase_08 | AC | 206 ms
59,676 KB |
testcase_09 | AC | 29 ms
19,456 KB |
testcase_10 | AC | 38 ms
24,064 KB |
testcase_11 | AC | 190 ms
30,464 KB |
testcase_12 | AC | 188 ms
30,464 KB |
testcase_13 | AC | 184 ms
30,464 KB |
testcase_14 | AC | 180 ms
27,264 KB |
testcase_15 | AC | 179 ms
26,880 KB |
testcase_16 | AC | 168 ms
24,832 KB |
testcase_17 | AC | 162 ms
24,576 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.IO; using System.Linq; public class YukiCoder { public static void Solve() { var S = MyConsole.String(); var M = MyConsole.Int(); string[] MM = new string[M]; for (int i = 0 ; i < M ; i++) MM[i] = MyConsole.String(); var dic = new Dictionary<string, int>(); int sLength = S.Length; for (int sLen = 0 ; sLen < sLength ; sLen++) { string s = ""; // 検索の文字列1から10桁で一文字ずつズラしながら // 文字列をくり抜いてディクショナリに格納する for (int mLen = 1 ; mLen < 11 ; mLen++) { // 現在位置から後ろの文字を結合させながらディクショナリに追加する int j = sLen - mLen + 1; if (j < 0) break; s = S[j] + s; // ディクショナリに対して、重複した文字列は登場回数をインクリメント、新規は追加 if (dic.ContainsKey( s )) dic[s]++; else dic.Add( s, 1 ); } } int ANS = 0; // 与えられた検索対象の文字列をキーに登場回数を取得して加算を行う for (int i = 0 ; i < M ; i++) if (dic.ContainsKey( MM[i] )) ANS += dic[MM[i]]; MyConsole.wLine( ANS.ToString() ); } public static void Main() { MyConsole.Read(); Solve(); MyConsole.Finish(); } } public static class MyConsole { private static List<string> ReadedLine = new List<string>(); private static char[] buf = new char[1024]; private static int i; public static void Read() { string sr = Console.In.ReadToEnd(); ReadedLine = sr.Split( new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries ).ToList(); Console.SetOut( new StreamWriter( Console.OpenStandardOutput() ) { AutoFlush = false } ); } public static string String() { return ReadedLine[i++]; } public static string[] StringSplit() { return ReadedLine[i++].Split( new[] { ' ' } ); } public static int Int() { return int.Parse( ReadedLine[i++] ); } public static int[] IntSplit() { string[] strs = StringSplit(); int[] ret = new int[strs.Length]; for (int i = 0 ; i < strs.Length ; i++) { ret[i] = int.Parse( strs[i] ); } return ret; } public static long Long() { return long.Parse( ReadedLine[i++] ); } public static double Double() { return double.Parse( ReadedLine[i++] ); } public static void wLine( string output = null ) { Console.WriteLine( output ); } public static void Finish() { Console.Out.Flush(); } }