結果

問題 No.365 ジェンガソート
ユーザー mencottonmencotton
提出日時 2018-02-19 23:22:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 109,240 KB
実行使用メモリ 32,932 KB
最終ジャッジ日時 2024-07-16 03:53:06
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,288 KB
testcase_01 AC 30 ms
25,220 KB
testcase_02 AC 29 ms
23,220 KB
testcase_03 AC 29 ms
25,356 KB
testcase_04 AC 29 ms
25,116 KB
testcase_05 AC 29 ms
27,264 KB
testcase_06 AC 29 ms
27,148 KB
testcase_07 AC 29 ms
25,100 KB
testcase_08 AC 29 ms
23,216 KB
testcase_09 AC 29 ms
25,344 KB
testcase_10 AC 29 ms
23,224 KB
testcase_11 AC 29 ms
25,124 KB
testcase_12 AC 30 ms
25,244 KB
testcase_13 AC 29 ms
25,252 KB
testcase_14 AC 29 ms
25,224 KB
testcase_15 AC 30 ms
27,424 KB
testcase_16 AC 58 ms
32,704 KB
testcase_17 AC 63 ms
31,300 KB
testcase_18 AC 36 ms
26,140 KB
testcase_19 AC 63 ms
31,016 KB
testcase_20 AC 43 ms
26,752 KB
testcase_21 AC 41 ms
26,660 KB
testcase_22 AC 57 ms
30,264 KB
testcase_23 AC 48 ms
29,684 KB
testcase_24 AC 58 ms
30,176 KB
testcase_25 AC 41 ms
26,420 KB
testcase_26 AC 51 ms
27,488 KB
testcase_27 AC 65 ms
31,356 KB
testcase_28 AC 52 ms
27,540 KB
testcase_29 AC 62 ms
32,932 KB
testcase_30 AC 52 ms
27,336 KB
testcase_31 AC 42 ms
26,280 KB
testcase_32 AC 42 ms
28,676 KB
testcase_33 AC 64 ms
31,320 KB
testcase_34 AC 40 ms
26,492 KB
testcase_35 AC 58 ms
30,404 KB
testcase_36 AC 64 ms
31,416 KB
testcase_37 AC 65 ms
31,272 KB
testcase_38 AC 66 ms
31,564 KB
testcase_39 AC 65 ms
31,284 KB
testcase_40 AC 65 ms
31,540 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.Linq;

namespace _365
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); Array.Reverse(x);
            int a = n;
            for (int i = 0; i < n; i++)
            {
                if (x[i] == a) a--;
            }
            Console.WriteLine(a);
        }
    }
}
0