結果
問題 | No.430 文字列検索 |
ユーザー | yaoshimax |
提出日時 | 2016-10-02 23:38:25 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1,714 ms / 2,000 ms |
コード長 | 511 bytes |
コンパイル時間 | 382 ms |
コンパイル使用メモリ | 59,024 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 00:04:23 |
合計ジャッジ時間 | 12,123 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 |
ソースコード
#include <iostream> #include <vector> #include <string> using namespace std; int main(){ string S; cin >> S; int M; cin >> M; int ans = 0; int len = S.size(); for( int i = 0 ; i < M; i++){ string C; cin >> C; int size=C.size(); for( int j = 0 ; j+size-1 < len; j++ ){ for( int k = 0 ; k < size; k++ ){ if( S[j+k]!=C[k] ){ break; } if( k == size-1 ) ans++; } } } cout << ans << endl; }