結果

問題 No.706 多眼生物の調査
ユーザー バカらっくバカらっく
提出日時 2018-07-01 01:59:05
言語 Swift
(5.10.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 968 ms
コンパイル使用メモリ 128,124 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-05-07 17:45:06
合計ジャッジ時間 1,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 8 ms
9,344 KB
testcase_02 AC 8 ms
9,344 KB
testcase_03 AC 8 ms
9,344 KB
testcase_04 AC 11 ms
9,344 KB
testcase_05 AC 25 ms
9,472 KB
testcase_06 AC 51 ms
9,600 KB
testcase_07 AC 8 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Main {
    
    func Proc() {
        let inputCount = Int(readLine()!)!
        var dic = [Int:Int]()
        var cntMax = 0
        var ans = 0
        for _ in 0..<inputCount {
            let inpt = readLine()!.map{ $0 }.filter{ $0 == "^" }.count
            if let num = dic[inpt] {
                dic[inpt] = num + 1
            } else {
                dic[inpt] = 1
            }
            if dic[inpt]! == cntMax {
                if ans < inpt {
                    ans = inpt
                    cntMax = dic[inpt]!
                }
            } else if dic[inpt]! > cntMax {
                ans = inpt
                cntMax = dic[inpt]!
            }
        }
        print(ans)
    }
    
}


Main().Proc()
0