Submission #65987676
Source Code Expand
Copy
#include <stdio.h>#include <string.h>char T[4096];char U[4096];int main(void) {int Tlen, Ulen;int i, j;if (scanf("%4095s", T) != 1) return 1;if (scanf("%4095s", U) != 1) return 1;Tlen = (int)strlen(T);Ulen = (int)strlen(U);for (i = 0; i <= Tlen - Ulen; i++) {int ok = 1;for (j = 0; j < Ulen; j++) {if (T[i + j] != '?' && T[i + j] != U[j]) {ok = 0;break;}}
#include <stdio.h>
#include <string.h>
char T[4096];
char U[4096];
int main(void) {
int Tlen, Ulen;
int i, j;
if (scanf("%4095s", T) != 1) return 1;
if (scanf("%4095s", U) != 1) return 1;
Tlen = (int)strlen(T);
Ulen = (int)strlen(U);
for (i = 0; i <= Tlen - Ulen; i++) {
int ok = 1;
for (j = 0; j < Ulen; j++) {
if (T[i + j] != '?' && T[i + j] != U[j]) {
ok = 0;
break;
}
}
if (ok) {
puts("Yes");
return 0;
}
}
puts("No");
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - Four Hidden |
| User | mikecat |
| Language | C (gcc 12.2.0) |
| Score | 250 |
| Code Size | 506 Byte |
| Status | AC |
| Exec Time | 0 ms |
| Memory | 1656 KB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 250 / 250 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt |
| All | 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt, 01_random_15.txt, 01_random_16.txt, 01_random_17.txt, 01_random_18.txt, 01_random_19.txt, 01_random_20.txt, 02_handmade_01.txt, 02_handmade_02.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00_sample_01.txt | AC | 0 ms | 1624 KB |
| 00_sample_02.txt | AC | 0 ms | 1624 KB |
| 00_sample_03.txt | AC | 0 ms | 1540 KB |
| 01_random_01.txt | AC | 0 ms | 1512 KB |
| 01_random_02.txt | AC | 0 ms | 1624 KB |
| 01_random_03.txt | AC | 0 ms | 1656 KB |
| 01_random_04.txt | AC | 0 ms | 1624 KB |
| 01_random_05.txt | AC | 0 ms | 1624 KB |
| 01_random_06.txt | AC | 0 ms | 1536 KB |
| 01_random_07.txt | AC | 0 ms | 1508 KB |
| 01_random_08.txt | AC | 0 ms | 1624 KB |
| 01_random_09.txt | AC | 0 ms | 1564 KB |
| 01_random_10.txt | AC | 0 ms | 1620 KB |
| 01_random_11.txt | AC | 0 ms | 1584 KB |
| 01_random_12.txt | AC | 0 ms | 1628 KB |
| 01_random_13.txt | AC | 0 ms | 1620 KB |
| 01_random_14.txt | AC | 0 ms | 1516 KB |
| 01_random_15.txt | AC | 0 ms | 1540 KB |
| 01_random_16.txt | AC | 0 ms | 1616 KB |
| 01_random_17.txt | AC | 0 ms | 1616 KB |
| 01_random_18.txt | AC | 0 ms | 1568 KB |
| 01_random_19.txt | AC | 0 ms | 1560 KB |
| 01_random_20.txt | AC | 0 ms | 1540 KB |
| 02_handmade_01.txt | AC | 0 ms | 1624 KB |
| 02_handmade_02.txt | AC | 0 ms | 1620 KB |