結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー NoNo
提出日時 2015-11-05 21:10:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 525 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 110,976 KB
実行使用メモリ 56,116 KB
最終ジャッジ日時 2024-09-13 12:50:44
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
31,312 KB
testcase_01 AC 26 ms
23,728 KB
testcase_02 TLE -
testcase_03 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            var a =  new List<int>();
            foreach (var item in s) a.Add(int.Parse(item.ToString()));
            a.Sort();
            a.Reverse();
            s = "";
            foreach (var item in a) s += item;
            Console.WriteLine(s);
        }
    }
}
0