結果

問題 No.135 とりあえず1次元の問題
ユーザー huffman56huffman56
提出日時 2022-07-09 18:54:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 112,520 KB
実行使用メモリ 34,276 KB
最終ジャッジ日時 2024-06-10 02:11:45
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
34,000 KB
testcase_01 AC 31 ms
27,296 KB
testcase_02 AC 31 ms
25,392 KB
testcase_03 AC 30 ms
25,648 KB
testcase_04 AC 31 ms
25,780 KB
testcase_05 AC 30 ms
25,520 KB
testcase_06 AC 30 ms
27,428 KB
testcase_07 AC 31 ms
25,396 KB
testcase_08 AC 31 ms
25,636 KB
testcase_09 AC 31 ms
25,636 KB
testcase_10 AC 32 ms
27,808 KB
testcase_11 AC 31 ms
27,684 KB
testcase_12 AC 35 ms
25,704 KB
testcase_13 AC 30 ms
27,300 KB
testcase_14 AC 35 ms
25,904 KB
testcase_15 AC 33 ms
25,772 KB
testcase_16 AC 36 ms
27,652 KB
testcase_17 AC 34 ms
25,872 KB
testcase_18 AC 35 ms
25,580 KB
testcase_19 AC 36 ms
26,160 KB
testcase_20 AC 35 ms
27,616 KB
testcase_21 AC 89 ms
34,276 KB
testcase_22 AC 92 ms
31,724 KB
evil01.txt AC 91 ms
32,212 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;

namespace SortItems
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            Array.Sort(x);
            var ans = 1000001;

            for (var i = 0; i < n; i++)
            {
                if (i == n-1)
                {
                    break;
                }

                if (x[i] != x[i+1])
                {
                    ans = Math.Min(Math.Abs(x[i] - x[i + 1]), ans);
                }

            }
            if (ans == 1000001)
            {
                ans = 0;
            }

            Console.WriteLine(ans);
        }
    }
}
0