結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | swdamdr |
提出日時 | 2017-02-27 13:41:58 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 106,416 KB |
実行使用メモリ | 27,644 KB |
最終ジャッジ日時 | 2024-06-11 19:21:21 |
合計ジャッジ時間 | 1,690 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
18,048 KB |
testcase_01 | AC | 23 ms
17,792 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.
ソースコード
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(); } }