結果
問題 | No.24 数当てゲーム |
ユーザー | k.h |
提出日時 | 2019-08-03 23:01:10 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 621 bytes |
コンパイル時間 | 10,118 ms |
コンパイル使用メモリ | 241,932 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 12:12:37 |
合計ジャッジ時間 | 10,276 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" "strings" ) func main() { sc := bufio.NewScanner(os.Stdin) sc.Scan() N, _ := strconv.Atoi(sc.Text()) m := map[string]int{ "0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, } for i := 0; i < N; i++ { sc.Scan() strs := strings.Split(sc.Text(), " ") if strs[4] == "YES" { for j := 0; j < 4; j++ { m[strs[j]]++ } } else { for j := 0; j < 4; j++ { m[strs[j]]-- } } } max := m["0"] ans := "0" for k, v := range m { if v > max { max = v ans = k } } fmt.Println(ans) }