結果

問題 No.706 多眼生物の調査
ユーザー MaboyMaboy
提出日時 2021-06-21 21:28:43
言語 Swift
(5.10.0)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 185,688 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-06-22 22:52:54
合計ジャッジ時間 3,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
16,896 KB
testcase_01 AC 11 ms
16,768 KB
testcase_02 AC 12 ms
17,152 KB
testcase_03 AC 20 ms
17,152 KB
testcase_04 AC 55 ms
17,024 KB
testcase_05 AC 222 ms
17,408 KB
testcase_06 AC 586 ms
17,152 KB
testcase_07 AC 12 ms
16,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation
let n = Int(readLine()!)!
var l = [Int]()
for _ in 1...n{
    let s = readLine()!
    l += [s.count - s.replacingOccurrences(of: "^", with: "").count]
}
var d = [Int:Int]()
let s = Set(l)

for i in s{
    var c = 0
    for j in l{
        c += i == j ? 1 : 0
    }
    d[i] = c
}
var k = 0
var v = 0
for i in d{
    if i.value > v{
        v = i.value
        k = i.key
    }else if i.value == v{
        if i.key > k{
            k = i.key
        }
    }
}
print(k)
0