結果

問題 No.406 鴨等間隔の法則
ユーザー tsuchinagatsuchinaga
提出日時 2019-02-21 12:28:06
言語 Go
(1.22.1)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 13,990 ms
コンパイル使用メモリ 225,348 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2024-07-07 12:35:32
合計ジャッジ時間 30,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 826 ms
7,832 KB
testcase_05 AC 309 ms
6,944 KB
testcase_06 AC 323 ms
6,940 KB
testcase_07 AC 341 ms
6,940 KB
testcase_08 AC 823 ms
7,828 KB
testcase_09 AC 918 ms
7,828 KB
testcase_10 AC 381 ms
6,940 KB
testcase_11 AC 709 ms
7,832 KB
testcase_12 AC 465 ms
6,940 KB
testcase_13 AC 421 ms
6,940 KB
testcase_14 AC 777 ms
7,836 KB
testcase_15 AC 52 ms
6,940 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 33 ms
6,940 KB
testcase_18 AC 71 ms
6,940 KB
testcase_19 AC 79 ms
6,940 KB
testcase_20 AC 116 ms
6,944 KB
testcase_21 AC 114 ms
6,940 KB
testcase_22 AC 208 ms
6,940 KB
testcase_23 AC 495 ms
6,944 KB
testcase_24 AC 686 ms
7,832 KB
testcase_25 AC 932 ms
7,828 KB
testcase_26 AC 932 ms
7,828 KB
testcase_27 AC 923 ms
7,832 KB
testcase_28 AC 903 ms
7,832 KB
testcase_29 AC 935 ms
7,828 KB
testcase_30 AC 931 ms
7,832 KB
testcase_31 AC 904 ms
7,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	var n, x int
	_, _ = fmt.Scan(&n)

	nums := make([]int, n)
	for i := range nums {
		_, _ = fmt.Scan(&x)
		nums[i] = x
	}

	sort.Slice(nums, func(i, j int) bool {
		return nums[i] < nums[j]
	})

	diff := nums[1] - nums[0]
	for i := range nums {
		if i < 2 {
			continue
		}

		if diff == 0 || nums[i]-nums[i-1] != diff {
			fmt.Println("NO")
			return
		}
	}

	fmt.Println("YES")
}
0