結果

問題 No.490 yukiソート
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-08-28 01:31:04
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 105,220 KB
実行使用メモリ 26,300 KB
最終ジャッジ日時 2023-09-20 07:28:11
合計ジャッジ時間 7,711 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
21,912 KB
testcase_01 WA -
testcase_02 AC 67 ms
22,056 KB
testcase_03 AC 67 ms
22,004 KB
testcase_04 AC 77 ms
24,272 KB
testcase_05 AC 76 ms
24,264 KB
testcase_06 AC 77 ms
24,232 KB
testcase_07 AC 76 ms
22,216 KB
testcase_08 AC 76 ms
24,188 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 67 ms
21,912 KB
testcase_25 AC 67 ms
21,856 KB
testcase_26 AC 66 ms
22,036 KB
testcase_27 AC 67 ms
22,064 KB
testcase_28 AC 67 ms
22,052 KB
testcase_29 AC 66 ms
21,920 KB
testcase_30 AC 67 ms
24,176 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 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;

class No490{
    static void Main(){
        var count=Int32.Parse(Console.ReadLine());
        var array=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).OrderBy(x=>x).ToArray();
        foreach(var ans in array){
            Console.Write($"{ans} ");
        }
        Console.WriteLine();
    }
}
0