結果

問題 No.938 賢人を探せ
ユーザー kat0rikkat0rik
提出日時 2020-01-06 13:00:03
言語 Go
(1.22.1)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 14,758 ms
コンパイル使用メモリ 222,704 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-08 09:10:56
合計ジャッジ時間 17,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 400 ms
12,288 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 162 ms
7,168 KB
testcase_09 AC 162 ms
7,168 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 184 ms
7,296 KB
testcase_12 AC 161 ms
7,168 KB
testcase_13 AC 160 ms
7,040 KB
testcase_14 AC 157 ms
7,040 KB
testcase_15 AC 155 ms
7,168 KB
testcase_16 AC 154 ms
7,040 KB
testcase_17 AC 156 ms
7,168 KB
testcase_18 AC 157 ms
7,168 KB
testcase_19 AC 155 ms
7,168 KB
testcase_20 AC 156 ms
7,168 KB
testcase_21 AC 158 ms
7,168 KB
testcase_22 AC 233 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

type student struct {
	id   int
	name string
	bad  bool
}

type sts []student

func (s sts) Len() int {
	return len(s)
}
func (s sts) Less(i, j int) bool {
	return s[i].id < s[j].id
}
func (s sts) Swap(i, j int) {
	s[i], s[j] = s[j], s[i]
}

func main() {
	var N int
	fmt.Scan(&N)
	students := make(map[string]student, 0)
	for i := 0; i < N; i++ {
		sta := new(student)
		stb := new(student)
		fmt.Scan(&sta.name, &stb.name)
		if v, ok := students[sta.name]; !ok {
			sta.id = i
			sta.bad = true
			students[sta.name] = *sta
		} else {
			v.bad = true
			students[sta.name] = v
		}
		if _, ok := students[stb.name]; !ok {
			stb.id = i
			students[stb.name] = *stb
		}
	}
	a := make([]student, 0)
	for _, v := range students {
		if !v.bad {
			a = append(a, v)
		}
	}
	sort.Sort(sts(a))
	for i := range a {
		fmt.Println(a[i].name)
	}
}
0