Please read the new rule regarding the restriction on the use of AI tools. ×

siddhant4583agarwal's blog

By siddhant4583agarwal, history, 19 months ago, In English

https://codeforces.net/contest/1796/problem/B

This question I tried using LCM. I would make dp table for LCM and for finding LCM, I will traverse the table and wherever the elements in string a and b are same I will add that to my answer string else I will add '*'. Then I will remove all the consecutive '*' and check if number of asterisk are less than or equal to letters then I will print "YES" else print "NO".

When I am running this code I am getting "wrong answer The jury has the answer but the participant doesn't (test case 1333)". Can anyone tell what is wrong in my code and when do we get this error?

My submission link is: https://codeforces.net/contest/1796/submission/195562144

Full text and comments »