結果

問題 No.365 ジェンガソート
ユーザー bluemeganebluemegane
提出日時 2020-09-10 20:59:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 107,924 KB
実行使用メモリ 31,768 KB
最終ジャッジ日時 2024-12-24 00:31:00
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,652 KB
testcase_01 AC 27 ms
25,952 KB
testcase_02 AC 27 ms
25,888 KB
testcase_03 AC 28 ms
24,368 KB
testcase_04 AC 27 ms
23,660 KB
testcase_05 AC 27 ms
21,940 KB
testcase_06 AC 26 ms
24,240 KB
testcase_07 AC 27 ms
25,768 KB
testcase_08 AC 28 ms
25,952 KB
testcase_09 AC 27 ms
24,168 KB
testcase_10 AC 26 ms
24,224 KB
testcase_11 AC 28 ms
23,852 KB
testcase_12 AC 27 ms
23,976 KB
testcase_13 AC 27 ms
23,916 KB
testcase_14 AC 26 ms
24,040 KB
testcase_15 AC 27 ms
23,780 KB
testcase_16 AC 54 ms
29,460 KB
testcase_17 AC 61 ms
30,080 KB
testcase_18 AC 34 ms
24,940 KB
testcase_19 AC 60 ms
29,680 KB
testcase_20 AC 41 ms
25,300 KB
testcase_21 AC 38 ms
25,452 KB
testcase_22 AC 55 ms
27,528 KB
testcase_23 AC 45 ms
26,324 KB
testcase_24 AC 53 ms
31,152 KB
testcase_25 AC 39 ms
25,604 KB
testcase_26 AC 49 ms
28,440 KB
testcase_27 AC 62 ms
29,896 KB
testcase_28 AC 50 ms
26,212 KB
testcase_29 AC 59 ms
31,768 KB
testcase_30 AC 49 ms
26,528 KB
testcase_31 AC 41 ms
25,844 KB
testcase_32 AC 39 ms
25,188 KB
testcase_33 AC 59 ms
29,992 KB
testcase_34 AC 36 ms
25,708 KB
testcase_35 AC 54 ms
29,512 KB
testcase_36 AC 61 ms
28,176 KB
testcase_37 AC 59 ms
30,208 KB
testcase_38 AC 60 ms
30,096 KB
testcase_39 AC 62 ms
30,088 KB
testcase_40 AC 61 ms
30,084 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, a);
    }
    static void getAns(int n, int[] a)
    {
        var np = 0;
        for (int i = 0; i < n; i++)
        {
            if (a[i] == n) { np = i; break; }
        }
        var count = 1;
        var t = n - 1;
        for (int i = np - 1; i >= 0; i--)
        {
            if (a[i] == t) { count++; t--; }
        }
        Console.WriteLine(n - count);
    }
}
0