• 讨论 (0)
  • 贡献 (1)
  • 递交 (313)
这个用户还没有发布过讨论

最被赞同的题解

最近编写的题解

最近递交

状态 题目 递交者 时间 内存 语言 递交时间
1303逆数对 003003003 79ms 3.312 MiB Python 3 3 个月前
1303逆数对 003003003 80ms 3.312 MiB Python 3 3 个月前
1303逆数对 003003003 0ms 0 Bytes Python 3 3 个月前
1303逆数对 003003003 0ms 0 Bytes Python 3 3 个月前
1303逆数对 003003003 0ms 0 Bytes Python 3 3 个月前
1303逆数对 003003003 0ms 0 Bytes Python 3 3 个月前
1207改正单词 003003003 79ms 3.316 MiB Python 3 3 个月前
1603构造三角形 003003003 78ms 3.305 MiB Python 3 3 个月前
1204数不同 003003003 79ms 3.32 MiB Python 3 3 个月前
1701纸张折叠 003003003 0ms 0 Bytes Python 3 3 个月前

个人简介

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