結果
問題 | No.430 文字列検索 |
ユーザー | Bucchiman |
提出日時 | 2020-04-17 01:03:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,792 ms / 2,000 ms |
コード長 | 907 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 32,768 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-15 16:26:25 |
合計ジャッジ時間 | 15,388 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 862 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 506 ms
6,940 KB |
testcase_03 | AC | 1,571 ms
6,940 KB |
testcase_04 | AC | 989 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 1,602 ms
6,940 KB |
testcase_13 | AC | 1,594 ms
6,940 KB |
testcase_14 | AC | 1,598 ms
6,940 KB |
testcase_15 | AC | 1,792 ms
6,940 KB |
testcase_16 | AC | 1,547 ms
6,944 KB |
testcase_17 | AC | 901 ms
6,940 KB |
testcase_18 | AC | 841 ms
6,944 KB |
ソースコード
/* * FileName: string_search * CreatedDate: 2020-04-17 00:49:10 +0900 * LastModified: 2020-04-17 01:03:19 +0900 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define str_max 50000 int main(void){ char *s=(char *)calloc(str_max,sizeof(char)); scanf("%s",s); int m; scanf("%d",&m); int count=0,j,k; for(int i=0;i<m;i++){ char *string = (char*)calloc(10,sizeof(char)); scanf("%s",string); if(strlen(s)<strlen(string)){ free(string); continue; } for(j=0;j<strlen(s)-strlen(string)+1;j++){ for(k=0;k<strlen(string);k++){ if(s[j+k]!=string[k]){ break; } } if(k==strlen(string)){ count++; } } free(string); } printf("%d\n",count); free(s); return 0; }