結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー | yukirin |
提出日時 | 2015-05-15 17:01:55 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 871 bytes |
コンパイル時間 | 11,604 ms |
コンパイル使用メモリ | 233,732 KB |
実行使用メモリ | 7,516 KB |
最終ジャッジ日時 | 2024-10-10 04:33:30 |
合計ジャッジ時間 | 12,559 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 8 ms
7,516 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 6 ms
7,512 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 5 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
6,820 KB |
testcase_20 | AC | 9 ms
7,508 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" "strings" ) var sc = bufio.NewScanner(os.Stdin) var rdr = bufio.NewReaderSize(os.Stdin, 1000000) func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i } func nextFloat() float64 { f, _ := strconv.ParseFloat(nextLine(), 64) return f } func readLine() string { buf := make([]byte, 0, 1000000) for { l, p, e := rdr.ReadLine() if e != nil { panic(e) } buf = append(buf, l...) if !p { break } } return string(buf) } func main() { sc.Split(bufio.ScanWords) m := [2]int{} counter := make(map[int]int) nextInt() for _, v := range strings.Split(readLine(), " ") { i, _ := strconv.Atoi(v) counter[i]++ } for k, v := range counter { if m[1] <= v && m[0] <= k { m[0], m[1] = k, v } } fmt.Println(m[0]) }