Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
356029 胡珂 【C5-3】回文字母 Python3 Wrong Answer 0 178 MS 3712 KB 83 2025-10-12 20:29:25

Tests(0/1):


# 判断字符串是否为回文 def is_palindrome(s): return s == s[::-1]


Judgement Protocol: