結果

問題 No.365 ジェンガソート
ユーザー mbanmban
提出日時 2016-12-23 14:34:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 109,452 KB
実行使用メモリ 33,332 KB
最終ジャッジ日時 2024-12-14 16:53:31
合計ジャッジ時間 3,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
27,400 KB
testcase_01 AC 26 ms
25,344 KB
testcase_02 AC 28 ms
27,264 KB
testcase_03 AC 28 ms
24,984 KB
testcase_04 AC 27 ms
23,088 KB
testcase_05 AC 26 ms
22,968 KB
testcase_06 AC 26 ms
27,144 KB
testcase_07 AC 25 ms
25,088 KB
testcase_08 AC 26 ms
25,096 KB
testcase_09 AC 28 ms
24,832 KB
testcase_10 AC 25 ms
27,148 KB
testcase_11 AC 25 ms
25,136 KB
testcase_12 AC 25 ms
22,964 KB
testcase_13 AC 25 ms
24,980 KB
testcase_14 AC 29 ms
23,088 KB
testcase_15 AC 26 ms
27,184 KB
testcase_16 AC 52 ms
30,400 KB
testcase_17 AC 58 ms
33,072 KB
testcase_18 AC 33 ms
26,000 KB
testcase_19 AC 53 ms
30,864 KB
testcase_20 AC 37 ms
26,864 KB
testcase_21 AC 35 ms
24,244 KB
testcase_22 AC 52 ms
28,464 KB
testcase_23 AC 41 ms
27,668 KB
testcase_24 AC 52 ms
32,212 KB
testcase_25 AC 38 ms
26,404 KB
testcase_26 AC 46 ms
27,344 KB
testcase_27 AC 59 ms
33,012 KB
testcase_28 AC 46 ms
25,484 KB
testcase_29 AC 53 ms
30,784 KB
testcase_30 AC 45 ms
27,452 KB
testcase_31 AC 39 ms
26,660 KB
testcase_32 AC 39 ms
26,492 KB
testcase_33 AC 54 ms
31,180 KB
testcase_34 AC 38 ms
28,548 KB
testcase_35 AC 53 ms
30,320 KB
testcase_36 AC 58 ms
33,204 KB
testcase_37 AC 59 ms
31,288 KB
testcase_38 AC 59 ms
31,288 KB
testcase_39 AC 59 ms
33,332 KB
testcase_40 AC 58 ms
31,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static void Main()
    {
        int N = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        int max = N;
        int cnt = 0;
        for(int i = N - 1; i >= 0; i--)
        {
            if (a[i] == max)
            {
                max--;
                cnt++;
            }
        }
        Console.WriteLine(N-cnt);
    }

}

0