結果

問題 No.2014 Eggs Hatching
ユーザー bluemeganebluemegane
提出日時 2022-07-22 22:03:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 65,136 KB
実行使用メモリ 25,596 KB
最終ジャッジ日時 2023-09-18 22:09:57
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
21,632 KB
testcase_01 AC 58 ms
21,552 KB
testcase_02 AC 58 ms
23,512 KB
testcase_03 AC 58 ms
21,488 KB
testcase_04 AC 60 ms
25,596 KB
testcase_05 AC 59 ms
21,572 KB
testcase_06 AC 59 ms
21,664 KB
testcase_07 AC 59 ms
21,580 KB
testcase_08 AC 60 ms
23,624 KB
testcase_09 AC 60 ms
21,572 KB
testcase_10 AC 60 ms
23,616 KB
testcase_11 AC 60 ms
23,620 KB
testcase_12 AC 59 ms
23,620 KB
testcase_13 AC 60 ms
21,664 KB
testcase_14 AC 59 ms
21,584 KB
testcase_15 AC 59 ms
21,580 KB
testcase_16 AC 59 ms
21,520 KB
testcase_17 AC 60 ms
21,444 KB
testcase_18 AC 59 ms
21,612 KB
testcase_19 AC 59 ms
21,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{

    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        Console.WriteLine(a.Min());
    }
}
0