結果

問題 No.716 距離
ユーザー mame_shibemame_shibe
提出日時 2019-12-05 03:14:21
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,116 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 111,896 KB
実行使用メモリ 29,988 KB
最終ジャッジ日時 2024-12-15 07:18:37
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
28,060 KB
testcase_01 AC 33 ms
25,892 KB
testcase_02 AC 33 ms
27,808 KB
testcase_03 AC 31 ms
23,736 KB
testcase_04 AC 31 ms
25,896 KB
testcase_05 AC 32 ms
27,916 KB
testcase_06 AC 32 ms
29,988 KB
testcase_07 AC 27 ms
25,420 KB
testcase_08 AC 27 ms
25,288 KB
testcase_09 AC 26 ms
27,552 KB
testcase_10 AC 33 ms
26,160 KB
testcase_11 WA -
testcase_12 AC 33 ms
26,060 KB
testcase_13 AC 32 ms
25,800 KB
testcase_14 AC 28 ms
25,420 KB
testcase_15 AC 33 ms
27,928 KB
testcase_16 WA -
testcase_17 AC 31 ms
25,672 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 33 ms
25,772 KB
testcase_25 AC 34 ms
26,156 KB
testcase_26 WA -
testcase_27 AC 34 ms
25,672 KB
testcase_28 WA -
testcase_29 AC 34 ms
25,928 KB
testcase_30 WA -
testcase_31 AC 32 ms
25,932 KB
testcase_32 AC 32 ms
25,864 KB
testcase_33 WA -
testcase_34 AC 34 ms
27,892 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 31 ms
25,800 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.Text;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using static System.Console;
using static System.Math;

namespace YukiCoder
{
    public class Program
    {
        public static void Main(string[] args)
        {
            new Program().Solve();
        }

        public void Solve()
        {
            int n = int.Parse(ReadLine());
            int[] a = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
            Array.Sort(a);

            bool isDuplicated = false;
            for (int i = 0; i < a.Length - 1; i++)
            {
                for (int j = i + 1; j < a.Length; j++)
                {
                    if (a[i] == a[j]) isDuplicated = true;
                }
                
            }

            int min;
            if (isDuplicated) // same num
            {
                min = 0;
            }
            else
            {
                min = Abs(a[0] - a[1]);
            }
            
            WriteLine(min);
            WriteLine(Abs(a[0] - a[a.Length -1]));

        }
    }
}
0