結果
問題 | No.570 3人兄弟(その1) |
ユーザー | kat0rik |
提出日時 | 2019-08-23 17:05:42 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 10,600 ms |
コンパイル使用メモリ | 222,096 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 14:30:38 |
合計ジャッジ時間 | 11,151 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
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]) }