zgjja


私信TA

用户名:zgjja

访问量:11994

签 名:

X_X

等  级
排  名 147
经  验 7306
参赛次数 0
文章发表 71
年  龄 0
在职情况 学生
学  校
专  业 X_X

  自我简介:

TA的其他文章

两种方法(C++)
浏览:98

解题思路:

注意事项:
注意迭代器的使用方法
参考代码:

import itertools

n = int(input())
string = "0123456789"
temp = itertools.permutations(string)
res = None
while n > 0:
    res = next(temp)
    n -= 1
print(''.join(res))


 

0.0分

0 人评分

  评论区

  • «
  • »