結果

問題 No.938 賢人を探せ
ユーザー kat0rikkat0rik
提出日時 2020-01-06 12:41:33
言語 Go
(1.23.4)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 15,944 ms
コンパイル使用メモリ 228,508 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-22 23:58:01
合計ジャッジ時間 20,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
12,288 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 242 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++ {
		var sta, stb 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
		}
		if _, ok := students[stb.name]; !ok {
			stb.id = i
			students[stb.name] = stb
		}
	}
	a := make([]student, 0)
	for _, v := range students {
		if !v.bad {
			// fmt.Println("name:", k, "id", v.id)
			a = append(a, v)
		}
	}
	sort.Sort(sts(a))
	// fmt.Println("N", N, "a", a)
	for i := range a {
		fmt.Println(a[i].name)
	}
}
0