結果

問題 No.1908 Assault for Keys
ユーザー rururunrururun
提出日時 2024-11-15 13:36:44
言語 Swift
(5.10.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 129,032 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-11-15 13:36:49
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 105 ms
24,960 KB
testcase_03 AC 105 ms
24,832 KB
testcase_04 AC 105 ms
24,960 KB
testcase_05 AC 106 ms
24,960 KB
testcase_06 AC 106 ms
24,960 KB
testcase_07 AC 106 ms
24,960 KB
testcase_08 AC 106 ms
24,960 KB
testcase_09 AC 108 ms
25,088 KB
testcase_10 AC 109 ms
24,960 KB
testcase_11 AC 107 ms
24,960 KB
testcase_12 AC 105 ms
24,960 KB
testcase_13 AC 106 ms
24,960 KB
testcase_14 AC 106 ms
24,960 KB
testcase_15 AC 106 ms
24,960 KB
testcase_16 AC 9 ms
9,216 KB
testcase_17 AC 9 ms
9,088 KB
testcase_18 AC 104 ms
24,960 KB
testcase_19 AC 104 ms
24,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:4:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 1...n{
    ^
    _

ソースコード

diff #

let nm = readLine()!.split(separator: " ").map{Int($0)!}
let (n,m) = (nm[0],nm[1])
var arr = [[String]]()
for i in 1...n{
    let ar = readLine()!.map{String($0)}
    arr.append(ar)
}
var ans = 0
for i in 0..<m{
    var cnt = 0
    for j in 0..<n{
        if arr[j][i] == "x"{
            cnt += 1
        }
    }
    ans = max(ans,cnt+1)
}
print(ans)
0