[白俊]16943数値の再配置
質問する
に答える
コード#コード# from itertools import permutations
def solution() :
a, b = input().split()
sub = list(map(lambda x : ''.join(x), permutations(a)))
res = -1
for s in sub :
if int(b) >= int(s) and s[0] != '0' :
res = max(res, int(s))
print(res)
solution()
Reference
この問題について([白俊]16943数値の再配置), 我々は、より多くの情報をここで見つけました
https://velog.io/@tldjfj123/백준-16943.-숫자-재배치
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
from itertools import permutations
def solution() :
a, b = input().split()
sub = list(map(lambda x : ''.join(x), permutations(a)))
res = -1
for s in sub :
if int(b) >= int(s) and s[0] != '0' :
res = max(res, int(s))
print(res)
solution()
Reference
この問題について([白俊]16943数値の再配置), 我々は、より多くの情報をここで見つけました https://velog.io/@tldjfj123/백준-16943.-숫자-재배치テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol