結果
問題 | No.430 文字列検索 |
ユーザー | kurenai3110 |
提出日時 | 2016-10-02 23:57:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 70,112 KB |
実行使用メモリ | 10,532 KB |
最終ジャッジ日時 | 2024-11-10 00:05:41 |
合計ジャッジ時間 | 3,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 158 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <iostream> #include <string> #include <iomanip> #include <vector> using namespace std; int main() { string s; cin >> s; int m; cin >> m; int ans = 0; vector<int> alp[26]; for (int i = 0; i < s.size(); i++)alp[s[i] - 'A'].push_back(i); for (int i = 0; i < m; i++) { string target; cin >> target; if (target[0] < 65 || 90 < target[0])continue; for (int i = 0; i < alp[target[0] - 'A'].size(); i++) { string sub = s.substr(alp[target[0] - 'A'][i], target.size()); if (sub == target)ans++; } } cout << ans << endl; return 0; }