結果

問題 No.365 ジェンガソート
ユーザー AreTrashAreTrash
提出日時 2016-04-30 16:26:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 108,692 KB
実行使用メモリ 32,276 KB
最終ジャッジ日時 2024-10-12 01:57:32
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,528 KB
testcase_01 AC 25 ms
24,248 KB
testcase_02 AC 26 ms
23,916 KB
testcase_03 AC 26 ms
23,788 KB
testcase_04 AC 25 ms
24,112 KB
testcase_05 AC 25 ms
23,920 KB
testcase_06 AC 26 ms
25,760 KB
testcase_07 AC 26 ms
25,696 KB
testcase_08 AC 25 ms
23,844 KB
testcase_09 AC 26 ms
24,048 KB
testcase_10 AC 25 ms
23,788 KB
testcase_11 AC 25 ms
25,892 KB
testcase_12 AC 25 ms
23,456 KB
testcase_13 AC 25 ms
21,936 KB
testcase_14 AC 24 ms
21,940 KB
testcase_15 AC 25 ms
23,660 KB
testcase_16 AC 53 ms
31,428 KB
testcase_17 AC 56 ms
29,552 KB
testcase_18 AC 32 ms
24,552 KB
testcase_19 AC 56 ms
29,432 KB
testcase_20 AC 39 ms
25,172 KB
testcase_21 AC 36 ms
25,264 KB
testcase_22 AC 51 ms
29,576 KB
testcase_23 AC 42 ms
25,924 KB
testcase_24 AC 51 ms
29,352 KB
testcase_25 AC 35 ms
23,220 KB
testcase_26 AC 45 ms
25,876 KB
testcase_27 AC 57 ms
32,204 KB
testcase_28 AC 46 ms
26,204 KB
testcase_29 AC 55 ms
31,972 KB
testcase_30 AC 47 ms
28,304 KB
testcase_31 AC 38 ms
27,248 KB
testcase_32 AC 37 ms
25,312 KB
testcase_33 AC 57 ms
29,724 KB
testcase_34 AC 34 ms
25,164 KB
testcase_35 AC 50 ms
29,248 KB
testcase_36 AC 58 ms
32,236 KB
testcase_37 AC 58 ms
32,276 KB
testcase_38 AC 59 ms
30,188 KB
testcase_39 AC 57 ms
32,004 KB
testcase_40 AC 58 ms
31,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No365_1{
    public class Program{
        public static void Main(string[] args){
            Console.ReadLine();
            var an = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);

            var seqMax = 0;
            var repMax = 0;

            foreach(var a in an){
                seqMax = Math.Max(seqMax, a);
                if(a < seqMax) repMax = Math.Max(repMax, a);
            }

            Console.WriteLine(repMax);
        }
    }
}
0