結果

問題 No.716 距離
ユーザー _matumo__matumo_
提出日時 2018-07-29 23:37:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 4,530 ms
コンパイル使用メモリ 115,300 KB
実行使用メモリ 27,832 KB
最終ジャッジ日時 2024-07-19 04:08:53
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
27,452 KB
testcase_01 AC 31 ms
23,216 KB
testcase_02 AC 32 ms
27,704 KB
testcase_03 AC 32 ms
27,324 KB
testcase_04 AC 34 ms
27,832 KB
testcase_05 AC 34 ms
27,580 KB
testcase_06 AC 31 ms
25,340 KB
testcase_07 AC 28 ms
25,152 KB
testcase_08 AC 28 ms
24,896 KB
testcase_09 AC 27 ms
25,008 KB
testcase_10 AC 31 ms
25,512 KB
testcase_11 AC 34 ms
25,536 KB
testcase_12 AC 33 ms
25,408 KB
testcase_13 AC 34 ms
25,644 KB
testcase_14 AC 30 ms
27,336 KB
testcase_15 AC 34 ms
25,256 KB
testcase_16 AC 33 ms
25,408 KB
testcase_17 AC 33 ms
27,568 KB
testcase_18 AC 30 ms
27,204 KB
testcase_19 AC 32 ms
25,524 KB
testcase_20 AC 29 ms
26,968 KB
testcase_21 AC 34 ms
25,620 KB
testcase_22 AC 34 ms
25,532 KB
testcase_23 AC 31 ms
25,136 KB
testcase_24 AC 34 ms
25,384 KB
testcase_25 AC 33 ms
25,484 KB
testcase_26 AC 35 ms
25,636 KB
testcase_27 AC 34 ms
25,664 KB
testcase_28 AC 30 ms
27,196 KB
testcase_29 AC 34 ms
25,372 KB
testcase_30 AC 33 ms
23,348 KB
testcase_31 AC 34 ms
27,300 KB
testcase_32 AC 34 ms
23,476 KB
testcase_33 AC 33 ms
25,408 KB
testcase_34 AC 35 ms
25,412 KB
testcase_35 AC 30 ms
23,096 KB
testcase_36 AC 33 ms
25,516 KB
testcase_37 AC 30 ms
27,076 KB
testcase_38 AC 34 ms
25,276 KB
testcase_39 AC 34 ms
25,412 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.Generic;
using System.Linq;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int nn = int.Parse(Console.ReadLine());
            var va = Console.ReadLine().Split().Select(int.Parse).ToList();
            var vb = va.Skip(1).Select((n, i) => n - va[i]);
            int min = vb.Min();
            int max = va[nn - 1] - va[0];
            Console.WriteLine(min);
            Console.WriteLine(max);
            Console.ReadLine();
        }
    }
}
0