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