結果

問題 No.2014 Eggs Hatching
ユーザー 👑 kakel-sankakel-san
提出日時 2022-07-22 21:21:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 1,325 ms
コンパイル使用メモリ 67,716 KB
実行使用メモリ 23,920 KB
最終ジャッジ日時 2023-09-18 22:06:03
合計ジャッジ時間 3,472 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
23,868 KB
testcase_01 AC 61 ms
21,880 KB
testcase_02 AC 61 ms
21,772 KB
testcase_03 AC 61 ms
21,860 KB
testcase_04 AC 60 ms
19,784 KB
testcase_05 AC 61 ms
21,768 KB
testcase_06 AC 61 ms
23,876 KB
testcase_07 AC 60 ms
19,764 KB
testcase_08 AC 61 ms
21,820 KB
testcase_09 AC 61 ms
23,808 KB
testcase_10 AC 61 ms
23,800 KB
testcase_11 AC 61 ms
21,904 KB
testcase_12 AC 61 ms
21,772 KB
testcase_13 AC 61 ms
21,888 KB
testcase_14 AC 61 ms
21,808 KB
testcase_15 AC 61 ms
23,920 KB
testcase_16 AC 61 ms
21,804 KB
testcase_17 AC 61 ms
21,840 KB
testcase_18 AC 60 ms
21,796 KB
testcase_19 AC 61 ms
21,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var a = NList;
        WriteLine(a.Min());
    }
}
0