結果

問題 No.135 とりあえず1次元の問題
ユーザー mbanmban
提出日時 2016-11-07 10:31:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 1,051 bytes
コンパイル時間 1,302 ms
コンパイル使用メモリ 104,320 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-06-11 07:02:40
合計ジャッジ時間 3,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
26,624 KB
testcase_01 AC 25 ms
18,304 KB
testcase_02 AC 25 ms
18,176 KB
testcase_03 AC 25 ms
18,304 KB
testcase_04 AC 25 ms
18,048 KB
testcase_05 AC 23 ms
18,048 KB
testcase_06 AC 24 ms
18,048 KB
testcase_07 AC 24 ms
17,920 KB
testcase_08 AC 23 ms
18,176 KB
testcase_09 AC 25 ms
18,176 KB
testcase_10 AC 25 ms
18,176 KB
testcase_11 AC 25 ms
18,176 KB
testcase_12 AC 27 ms
18,652 KB
testcase_13 AC 24 ms
18,304 KB
testcase_14 AC 29 ms
18,692 KB
testcase_15 AC 27 ms
18,304 KB
testcase_16 AC 27 ms
18,816 KB
testcase_17 AC 29 ms
18,556 KB
testcase_18 AC 29 ms
18,560 KB
testcase_19 AC 30 ms
18,432 KB
testcase_20 AC 29 ms
18,304 KB
testcase_21 AC 56 ms
27,392 KB
testcase_22 AC 56 ms
27,136 KB
evil01.txt AC 53 ms
27,008 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;

class Magatro
{
    static void Main()
    {
        int N = int.Parse(Console.ReadLine());
        bool[] point = new bool[1000001];
        string[] s = Console.ReadLine().Split(' ');
        for(int i = 0; i < N; i++)
        {
            point[int.Parse(s[i])] = true;
        }
        int min = int.MaxValue;
        bool a=false;
        int sta = 0;
        bool k = false;
        for(int i = 0; i <= 1000000; i++)
        {
            if (!k)
            {
                if (point[i])
                {
                    sta = i;
                    k = true;
                }
            }
            else
            {
                if (point[i])
                {
                    min = Math.Min(min, i - sta);
                    a = true;
                    sta = i;
                }
            }
        }
        if (a)
        {
            Console.WriteLine(min);
        }
        else
        {
            Console.WriteLine(0);
        }
    }
}
0