4 条题解

  • 2
    @ 2025-3-7 11:10:31
    dic={"a":'z',"b":"y","c":"x","d":"w","e":"v","f":"u","g":"t","h":"s","i":"r","j":'q',"k":"p","l":"o","m":"n","n":"m","o":"l","p":"k","q":"j","r":"i","s":"h","t":"g","u":"f","v":"e","w":"d","x":"c","y":"b","z":"a"}
    a=str(input())
    b=len(a)
    for i in a:
        if i in dic:
            print(dic[i],end="")
        else:
            print(i,end="")
    

    信息

    ID
    74
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    684
    已通过
    286
    上传者