結果
問題 | No.564 背の順 |
ユーザー | R_F |
提出日時 | 2017-11-22 14:25:48 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 851 bytes |
コンパイル時間 | 11,817 ms |
コンパイル使用メモリ | 236,852 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 20:57:04 |
合計ジャッジ時間 | 10,623 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 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 | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
ソースコード
package main import ( "fmt" "sort" "strconv" "strings" ) 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) { l := strings.Split(strconv.Itoa(i), "") if l[len(l)-1] == "1" { fmt.Printf("%dst\n", i) } else if l[len(l)-1] == "2" { fmt.Printf("%dnd\n", i) } else if l[len(l)-1] == "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 } } }