- 整数分解(版本2)
- 2014-08-18 21:20:16 @
粘code 不解释
n = int(input())
k = n // 3
w = n - 3*k
if w == 1:
if k>=1:
print((3**(k-1))*4)
else:
print(1)
elif w == 2:
print((3**k)*2)
else:
print(3**k)
2 条评论
-
贱人在我右边 LV 9 @ 2016-10-26 16:10:24
呵呵
-
2014-08-19 07:57:42@
。。。
- 1