結果
問題 | No.570 3人兄弟(その1) |
ユーザー | kat0rik |
提出日時 | 2019-08-23 17:12:36 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 483 bytes |
コンパイル時間 | 9,776 ms |
コンパイル使用メモリ | 237,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 14:30:52 |
合計ジャッジ時間 | 10,215 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "fmt" ) func main() { h := make([]int, 3) for i := range h { fmt.Scan(&h[i]) } if h[0] > h[1] && h[1] > h[2] { fmt.Printf("A\nB\nC\n") } if h[0] > h[2] && h[2] > h[1] { fmt.Printf("A\nC\nB\n") } if h[1] > h[0] && h[0] > h[2] { fmt.Printf("B\nA\nC\n") } if h[1] > h[2] && h[2] > h[0] { fmt.Printf("B\nC\nA\n") } if h[2] > h[0] && h[0] > h[1] { fmt.Printf("C\nA\nB\n") } if h[2] > h[1] && h[1] > h[0] { fmt.Printf("C\nB\nA\n") } }