結果

問題 No.716 距離
ユーザー mame_shibemame_shibe
提出日時 2019-12-05 03:14:21
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,116 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-05-08 23:14:41
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
19,584 KB
testcase_01 AC 36 ms
19,584 KB
testcase_02 AC 35 ms
19,584 KB
testcase_03 AC 36 ms
19,712 KB
testcase_04 AC 36 ms
19,712 KB
testcase_05 AC 37 ms
19,456 KB
testcase_06 AC 36 ms
19,712 KB
testcase_07 AC 30 ms
19,200 KB
testcase_08 AC 29 ms
19,072 KB
testcase_09 AC 29 ms
19,072 KB
testcase_10 AC 36 ms
19,712 KB
testcase_11 WA -
testcase_12 AC 36 ms
19,456 KB
testcase_13 AC 36 ms
19,584 KB
testcase_14 AC 30 ms
19,328 KB
testcase_15 AC 36 ms
19,584 KB
testcase_16 WA -
testcase_17 AC 36 ms
19,584 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
19,456 KB
testcase_25 AC 34 ms
19,584 KB
testcase_26 WA -
testcase_27 AC 36 ms
19,584 KB
testcase_28 WA -
testcase_29 AC 36 ms
19,456 KB
testcase_30 WA -
testcase_31 AC 36 ms
19,456 KB
testcase_32 AC 35 ms
19,456 KB
testcase_33 WA -
testcase_34 AC 35 ms
19,712 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 35 ms
19,584 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