結果

問題 No.182 新規性の虜
ユーザー k.hk.h
提出日時 2019-08-04 16:00:22
言語 Go
(1.22.1)
結果
RE  
実行時間 -
コード長 379 bytes
コンパイル時間 9,917 ms
コンパイル使用メモリ 232,372 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 09:24:10
合計ジャッジ時間 17,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 471 ms
5,376 KB
testcase_09 AC 764 ms
6,016 KB
testcase_10 AC 661 ms
6,016 KB
testcase_11 AC 547 ms
6,016 KB
testcase_12 AC 237 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 RE -
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 349 ms
6,016 KB
testcase_19 AC 242 ms
5,376 KB
testcase_20 AC 149 ms
5,376 KB
testcase_21 AC 391 ms
6,016 KB
testcase_22 AC 190 ms
5,376 KB
testcase_23 RE -
testcase_24 AC 546 ms
6,016 KB
testcase_25 AC 203 ms
6,016 KB
testcase_26 AC 98 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
evil01.txt AC 900 ms
6,144 KB
evil02.txt AC 917 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	var N, rlt int
	if N == 1 {
		fmt.Println("1")
		return
	}
	fmt.Scan(&N)
	a := make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scan(&a[i])
	}
	sort.Ints(a)
	for i := 1; i < N-1; i++ {
		if a[i] != a[i-1] && a[i] != a[i+1] {
			rlt++
		}
	}
	if a[0] != a[1] {
		rlt++
	}
	if a[N-1] != a[N-2] {
		rlt++
	}
	fmt.Println(rlt)
}
0