-
讨论 (0)
这个用户还没有发布过讨论 -
贡献 (1)
-
递交 (313)
最近递交
状态 题目 递交者 时间 内存 语言 递交时间 1303逆数对 003003003 79ms 3.312 MiB Python 3 2024-12-01 15:14:48 1303逆数对 003003003 80ms 3.312 MiB Python 3 2024-12-01 15:14:09 1303逆数对 003003003 0ms 0 Bytes Python 3 2024-12-01 15:13:54 1303逆数对 003003003 0ms 0 Bytes Python 3 2024-12-01 15:12:55 1303逆数对 003003003 0ms 0 Bytes Python 3 2024-12-01 15:12:47 1303逆数对 003003003 0ms 0 Bytes Python 3 2024-12-01 15:12:42 1207改正单词 003003003 79ms 3.316 MiB Python 3 2024-12-01 15:07:47 1603构造三角形 003003003 78ms 3.305 MiB Python 3 2024-12-01 14:58:40 1204数不同 003003003 79ms 3.32 MiB Python 3 2024-12-01 14:52:20 1701纸张折叠 003003003 0ms 0 Bytes Python 3 2024-12-01 14:46:08
个人简介
a=int(input())
print(a,'=',sep='',end='')
while a!=1:
f=1
for i in range(2,int(a**0.5+1)):
if a%i==0:
f=0
print(i,end='*')
a=a/i
break
if f==1:
print(int(a),end='')
break