-
讨论 (0)
这个用户还没有发布过讨论 -
贡献 (0)
啊哦,这个用户还没贡献过题目和题解~ -
递交 (0)
最近递交
状态 题目 递交者 时间 内存 语言 递交时间 1002 反向输出一个三位数 003003003 63ms 2.922 MiB Python 3 2025-11-01 15:20:46 1001 A+B问题 003003003 58ms 2.953 MiB Python 3 2025-11-01 15:14:14 1001 A+B问题 003003003 60ms 2.949 MiB Python 3 2025-11-01 15:13:49 1001 A+B问题 003003003 56ms 2.953 MiB Python 3 2025-11-01 15:13:46 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
个人简介
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