結果

問題 No.564 背の順
ユーザー R_FR_F
提出日時 2017-11-22 13:25:44
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 10,119 ms
コンパイル使用メモリ 223,080 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 20:54:49
合計ジャッジ時間 10,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
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 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main
import(
	"fmt"
	"sort"
)

func heightNum(num int, heights *[]int){
	for i := 1; i < num; i++{
		var val int
		fmt.Scan(&val)
		*heights = append(*heights, val)
	}
}

func appendSort(height int, heightSlice *[]int){
	*heightSlice = append(*heightSlice, height)
	sort.Ints(*heightSlice)
}

func ranking(i int){
	if i == 1{
		fmt.Printf("%dst\n", i)
	} else if i == 2{
		fmt.Println("%dnd\n", i)
	} else if i == 3{
		fmt.Printf("%drd\n", i)
	} else{
		fmt.Printf("%dth\n", i)
	}
}

func main(){
	var height, num int
	fmt.Scan(&height, &num)
	heightSlice := []int{}
	heightNum(num, &heightSlice)
	appendSort(height, &heightSlice)
	for i, v := range heightSlice{
		if v == height{
			ranking(len(heightSlice) - i)
			break
		}
	}
}
0