結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | nanophoto12 |
提出日時 | 2015-12-13 09:08:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 235 ms / 2,000 ms |
コード長 | 390 bytes |
コンパイル時間 | 781 ms |
コンパイル使用メモリ | 102,528 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-09-15 11:34:16 |
合計ジャッジ時間 | 1,719 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
17,536 KB |
testcase_01 | AC | 23 ms
17,280 KB |
testcase_02 | AC | 225 ms
17,276 KB |
testcase_03 | AC | 235 ms
17,412 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace No256 { class MainClass { public static void Main (string[] args) { var n = Console.ReadLine (); var array = n.ToCharArray (); Array.Sort (array); Array.Reverse (array); foreach (var element in array) { Console.Write (element); } Console.WriteLine (); } } }