結果

問題 No.135 とりあえず1次元の問題
ユーザー ゆうPゆうP
提出日時 2024-04-06 19:14:26
言語 Go
(1.22.1)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 1,081 bytes
コンパイル時間 11,812 ms
コンパイル使用メモリ 215,388 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-06 19:14:39
合計ジャッジ時間 13,075 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 1 ms
6,676 KB
testcase_09 AC 1 ms
6,676 KB
testcase_10 AC 1 ms
6,676 KB
testcase_11 AC 1 ms
6,676 KB
testcase_12 AC 1 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 1 ms
6,676 KB
testcase_15 AC 1 ms
6,676 KB
testcase_16 AC 1 ms
6,676 KB
testcase_17 AC 1 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 AC 10 ms
6,676 KB
testcase_22 AC 27 ms
6,676 KB
evil01.txt AC 22 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.135 とりあえず1次元の問題
package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"sort"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)
var wr = bufio.NewWriter(os.Stdout)

func next() string {
	sc.Scan()
	return sc.Text()
}

func nextInt() int {
	i, _ := strconv.Atoi(next())
	return i
}

func nextFloat() float64 {
	f, _ := strconv.ParseFloat(next(), 64)
	return f
}

func nextInts(n int) []int {
	ret := make([]int, n)
	for i := 0; i < n; i++ {
		ret[i] = nextInt()
	}
	return ret
}

func nextFloats(n int) []float64 {
	ret := make([]float64, n)
	for i := 0; i < n; i++ {
		ret[i] = nextFloat()
	}
	return ret
}

func nextStrings(n int) []string {
	ret := make([]string, n)
	for i := 0; i < n; i++ {
		ret[i] = next()
	}
	return ret
}

func main() {
	sc.Split(bufio.ScanWords)
	var n = nextInt()
	var x = nextInts(n)
	sort.Ints(x)
	ans := math.MaxInt64
	for i := 1; i < n; i++ {
		diff := int(math.Abs(float64(x[i]) - float64(x[i-1])))
		if diff > 0 {
			ans = min(ans, diff)
		}
	}
	if ans == math.MaxInt64 {
		fmt.Println(0)
	} else {
		fmt.Println(ans)
	}
}
0