結果

問題 No.365 ジェンガソート
ユーザー mencottonmencotton
提出日時 2018-02-19 23:21:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 114,876 KB
実行使用メモリ 33,608 KB
最終ジャッジ日時 2024-07-16 03:52:58
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
23,088 KB
testcase_02 WA -
testcase_03 AC 28 ms
27,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 26 ms
25,476 KB
testcase_11 WA -
testcase_12 AC 27 ms
25,100 KB
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 AC 37 ms
24,244 KB
testcase_22 AC 53 ms
32,572 KB
testcase_23 AC 45 ms
27,908 KB
testcase_24 AC 52 ms
30,376 KB
testcase_25 AC 37 ms
26,548 KB
testcase_26 WA -
testcase_27 AC 58 ms
31,096 KB
testcase_28 AC 47 ms
25,228 KB
testcase_29 AC 55 ms
31,044 KB
testcase_30 AC 48 ms
27,340 KB
testcase_31 AC 39 ms
26,532 KB
testcase_32 AC 39 ms
26,628 KB
testcase_33 AC 58 ms
33,360 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 59 ms
31,156 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 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;

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] == n) a--;
            }
            Console.WriteLine(a);
        }
    }
}
0