Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92263 余泽越 06变换四位数 Python3 Accepted 42 MS 3788 KB 176 2024-09-28 18:57:06

Tests(10/10):


Code:

a = int(input()) b = a//1000 c = a//100%10 d = a//10%10 e = a%10 f = str(b) g = str(c) h = str(d) i = str(e) if g == "0": print(f+i+h) else: print(g+f+i+h)