結果

問題 No.570 3人兄弟(その1)
ユーザー kat0rikkat0rik
提出日時 2019-08-23 17:05:42
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 9,542 ms
コンパイル使用メモリ 233,436 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-21 15:38:21
合計ジャッジ時間 9,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	h := make([]int, 3)
	for i := range h {
		fmt.Scan(&h[i])
	}
	sort.Sort(sort.Reverse(sort.IntSlice(h)))
	fmt.Println(h[0], h[1], h[2])
}
0