-
讨论 (0)
这个用户还没有发布过讨论 -
贡献 (2)
-
递交 (10)
最近递交
状态 题目 递交者 时间 内存 语言 递交时间 P1000 A+B Problem 003003003 144ms 2.949 MiB Python 3 2025-10-18 10:56:35 P1000 A+B Problem 003003003 135ms 2.953 MiB Python 2025-10-18 10:50:13 P1000 A+B Problem 003003003 144ms 2.938 MiB Python 3 2025-10-18 10:49:48 P1000 A+B Problem 003003003 159ms 2.949 MiB Python 3 2025-10-18 10:49:29 P1000 A+B Problem 003003003 138ms 2.945 MiB Python 3 2025-10-18 10:48:52 1010 苹果和虫子 003003003 67ms 2.957 MiB Python 3 2025-10-18 10:39:54 1009 商和余数 003003003 95ms 2.953 MiB Python 3 2025-10-18 10:23:12 1008 计算平均数 003003003 65ms 2.961 MiB Python 3 2025-10-18 10:18:42 1007 计算分数的浮点数值 003003003 65ms 2.953 MiB Python 3 2025-10-18 10:14:31 1006 等差数列末项计算 003003003 67ms 2.953 MiB Python 3 2025-10-18 10:09:40
个人简介
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