結果

問題 No.775 tatyamと素数大富豪(hard)
ユーザー kamome
提出日時 2019-07-03 22:21:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-14 01:45:00
合計ジャッジ時間 1,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
import itertools



N,K=map(int,input().split())
l=input().split()
mx=max(list(map(lambda x:int(x[0]),l)))
print(mx)
def sort_weight(_n):
    if len(_n)==2:
        return float(_n)
    if len(_n)==1:
        return float(_n)*10+mx+0.5
l2=sorted(l, key=sort_weight,reverse=True)
print(l2)
count=0
for i in itertools.permutations(l2):
    print("".join(i))
    count=count+1
    if count==K:
        break
0