結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー NoNo
提出日時 2015-11-05 21:10:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 525 bytes
コンパイル時間 3,036 ms
コンパイル使用メモリ 101,704 KB
実行使用メモリ 53,212 KB
最終ジャッジ日時 2023-10-11 14:07:54
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
24,960 KB
testcase_01 AC 57 ms
22,552 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