結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー ddsyg1ddsyg1
提出日時 2019-01-15 14:33:47
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 151 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 96,200 KB
最終ジャッジ日時 2024-06-24 22:01:53
合計ジャッジ時間 2,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,400 KB
testcase_01 AC 45 ms
54,528 KB
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
l = [int(x) for x in list(input())]
m = sorted(l, reverse=True)
print(int(reduce(lambda x, y: x + y,[str(x) for x in m])))
0