General
 
 
# Author Problem Lang Verdict Time Memory Sent Judged  
195770660 Practice:
iron_nicko
1800E2 - 31 PyPy 3-64 Accepted 389 ms 21296 KB 2023-03-03 10:17:06 2023-03-03 16:12:04
→ Source
for _ in range(int(input())):
  n, k = map(int, input().split())
  s1 = input()
  s2 = input()
  if n <= k: print("YES" if s1 == s2 else "NO")
  else:
    reg = n - k
    print("YES" if (sorted(s1) == sorted(s2) and s1[reg:-reg] == s2[reg:-reg]) else "NO")
?
Time: ? ms, memory: ? KB
Verdict: ?
Input
?
Participant's output
?
Jury's answer
?
Checker comment
?
Diagnostics
?
Click to see test details