結果

問題 No.975 ミスターマックスバリュ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-02-04 18:01:32
言語 Go
(1.22.1)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,388 bytes
コンパイル時間 17,146 ms
コンパイル使用メモリ 212,160 KB
実行使用メモリ 5,512 KB
最終ジャッジ日時 2023-10-21 06:25:03
合計ジャッジ時間 12,288 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 14 ms
5,512 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"strconv"
)

func exec(stdin *Stdin, stdout *Stdout) {
	x := stdin.ReadInt()
	n := stdin.ReadInt()
	m := stdin.ReadInt()

	a := map[int]bool{}
	b := map[int]bool{}
	for i := 0; i < n; i++ {
		a[stdin.ReadInt()] = true
	}
	for i := 0; i < m; i++ {
		b[stdin.ReadInt()] = true
	}

	_, ok1 := a[x]
	_, ok2 := b[x]
	if ok1 && ok2 {
		stdout.Println("MrMaxValu")
	} else if ok1 && !ok2 {
		stdout.Println("MrMax")
	} else if !ok1 && ok2 {
		stdout.Println("MaxValu")
	} else {
		stdout.Println(-1)
	}
}

func main() {
	stdout := NewStdout()
	defer stdout.Flush()
	exec(NewStdin(bufio.ScanWords), stdout)
}

type Stdin struct {
	stdin *bufio.Scanner
}

func NewStdin(split bufio.SplitFunc) *Stdin {
	s := Stdin{bufio.NewScanner(os.Stdin)}
	s.stdin.Split(split)
	s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32))
	return &s
}

func (s *Stdin) Read() string {
	s.stdin.Scan()
	return s.stdin.Text()
}

func (s *Stdin) ReadInt() int {
	n, _ := strconv.Atoi(s.Read())
	return n
}

func (s *Stdin) ReadFloat64() float64 {
	n, _ := strconv.ParseFloat(s.Read(), 64)
	return n
}

type Stdout struct {
	stdout *bufio.Writer
}

func NewStdout() *Stdout {
	return &Stdout{bufio.NewWriter(os.Stdout)}
}

func (s *Stdout) Flush() {
	s.stdout.Flush()
}

func (s *Stdout) Println(a ...interface{}) {
	fmt.Fprintln(s.stdout, a...)
}
0