結果

問題 No.706 多眼生物の調査
ユーザー MaboyMaboy
提出日時 2021-06-21 21:04:22
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 183,596 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-06-22 22:52:42
合計ジャッジ時間 3,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
17,152 KB
testcase_01 AC 9 ms
17,024 KB
testcase_02 AC 12 ms
16,896 KB
testcase_03 WA -
testcase_04 AC 57 ms
16,768 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 10 ms
17,024 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
    }
}
print(k)
0