結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー swdamdrswdamdr
提出日時 2017-02-27 13:41:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 101,984 KB
実行使用メモリ 23,596 KB
最終ジャッジ日時 2023-09-02 12:40:23
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge13 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
22,520 KB
testcase_01 AC 54 ms
20,584 KB
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        string s = Console.ReadLine();
        char[] c = s.ToCharArray();
        Array.Sort(c);
        Array.Reverse(c);

        s = s.Replace(c[0].ToString(), "");
        s = s.Replace(c[1].ToString(), "");

        Console.WriteLine(c[0].ToString() + c[1].ToString() + s);
        Console.Read();
    }
}
0