結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー yomo3yomo3
提出日時 2020-02-11 22:33:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 45 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 11,648 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-04-08 16:00:36
合計ジャッジ時間 790 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
9,856 KB
testcase_01 AC 30 ms
9,856 KB
testcase_02 AC 47 ms
11,008 KB
testcase_03 AC 44 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(''.join(sorted(input(), reverse=True)))
0