結果
問題 | No.570 3人兄弟(その1) |
ユーザー | ccppjsrb |
提出日時 | 2020-04-07 18:05:05 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,846 bytes |
コンパイル時間 | 13,678 ms |
コンパイル使用メモリ | 229,416 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 19:52:29 |
合計ジャッジ時間 | 14,214 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
ソースコード
package mainimport ("bufio""fmt""os""sort""strconv")func getScanner(fp *os.File) *bufio.Scanner {scanner := bufio.NewScanner(fp)scanner.Split(bufio.ScanWords)scanner.Buffer(make([]byte, 1000005), 1000005)return scanner}func getNextString(scanner *bufio.Scanner) string {scanner.Scan()return scanner.Text()}func getNextInt(scanner *bufio.Scanner) int {i, _ := strconv.Atoi(getNextString(scanner))return i}func getNextInt64(scanner *bufio.Scanner) int64 {i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)return i}func getNextUint64(scanner *bufio.Scanner) uint64 {i, _ := strconv.ParseUint(getNextString(scanner), 10, 64)return i}func getNextFloat64(scanner *bufio.Scanner) float64 {i, _ := strconv.ParseFloat(getNextString(scanner), 64)return i}func main() {fp := os.Stdinwfp := os.Stdoutcnt := 0if os.Getenv("MASPY") == "ますピ" {fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT"))cnt = 3}if os.Getenv("MASPYPY") == "ますピッピ" {wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10"))}scanner := getScanner(fp)writer := bufio.NewWriter(wfp)solve(scanner, writer)for i := 0; i < cnt; i++ {fmt.Fprintln(writer, "-----------------------------------")solve(scanner, writer)}writer.Flush()}func solve(scanner *bufio.Scanner, writer *bufio.Writer) {bb := make(brothers, 3)for i := 0; i < 3; i++ {bb[i].h = getNextInt(scanner)bb[i].i = i}sort.Sort(bb)ans := [3]string{"A","B","C",}for i := 0; i < 3; i++ {fmt.Fprintln(writer, ans[bb[i].i])}}type brother struct {h, i int}type brothers []brotherfunc (a brothers) Len() int { return len(a) }func (a brothers) Swap(i, j int) { a[i], a[j] = a[j], a[i] }func (a brothers) Less(i, j int) bool { return a[i].h > a[j].h }