結果

問題 No.135 とりあえず1次元の問題
ユーザー huffman56huffman56
提出日時 2022-07-09 18:53:40
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 110,920 KB
実行使用メモリ 33,828 KB
最終ジャッジ日時 2024-06-10 02:10:23
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
33,828 KB
testcase_01 AC 25 ms
25,644 KB
testcase_02 AC 24 ms
25,264 KB
testcase_03 WA -
testcase_04 AC 24 ms
25,260 KB
testcase_05 AC 24 ms
25,508 KB
testcase_06 AC 25 ms
25,644 KB
testcase_07 AC 25 ms
27,432 KB
testcase_08 AC 26 ms
25,128 KB
testcase_09 AC 26 ms
27,168 KB
testcase_10 AC 25 ms
25,516 KB
testcase_11 AC 26 ms
27,688 KB
testcase_12 AC 30 ms
25,720 KB
testcase_13 AC 25 ms
27,300 KB
testcase_14 AC 32 ms
25,608 KB
testcase_15 AC 29 ms
25,520 KB
testcase_16 AC 31 ms
27,904 KB
testcase_17 AC 30 ms
25,648 KB
testcase_18 AC 29 ms
23,728 KB
testcase_19 AC 29 ms
27,772 KB
testcase_20 AC 32 ms
27,752 KB
testcase_21 AC 72 ms
32,508 KB
testcase_22 AC 79 ms
29,900 KB
evil01.txt AC 76 ms
33,988 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 = 1000000;

            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);
                }

            }

            Console.WriteLine(ans);
        }
    }
}
0