/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 2.887 MiB
#2 Accepted 13ms 2.809 MiB
#3 Accepted 13ms 2.883 MiB
#4 Accepted 14ms 2.703 MiB
#5 Accepted 15ms 2.898 MiB
#6 Accepted 16ms 2.91 MiB
#7 Accepted 13ms 2.781 MiB

Code

def jjk(S, N):
    i = 0
    j = 0
    while i < len(S) and j < len(N):
        if S[i] == N[j]:
            i += 1
            j += 1
        else:
            i += 1
    return j == len(N)


T = int(input())
if 1<=T<=100:

    for i in range(T):

        S = input()
        N = input()

        result = jjk(S, N)

        if result:
            print("YES")
        else:
            print("NO")

Information

Submit By
Type
Submission
Problem
P1020 Favourite footballer
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 14:23:45
Judged At
2024-01-09 14:23:45
Judged By
Score
100
Total Time
16ms
Peak Memory
2.91 MiB