結果

問題 No.1908 Assault for Keys
ユーザー miya145592miya145592
提出日時 2023-05-05 23:21:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-05-02 18:34:26
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
51,328 KB
testcase_02 AC 71 ms
69,248 KB
testcase_03 AC 66 ms
69,248 KB
testcase_04 AC 67 ms
68,992 KB
testcase_05 AC 69 ms
69,376 KB
testcase_06 AC 71 ms
69,248 KB
testcase_07 AC 70 ms
69,760 KB
testcase_08 AC 66 ms
69,120 KB
testcase_09 AC 73 ms
69,376 KB
testcase_10 AC 68 ms
68,992 KB
testcase_11 AC 70 ms
69,504 KB
testcase_12 AC 67 ms
69,376 KB
testcase_13 AC 70 ms
69,504 KB
testcase_14 AC 70 ms
69,376 KB
testcase_15 AC 70 ms
69,248 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 AC 50 ms
60,672 KB
testcase_18 AC 72 ms
69,376 KB
testcase_19 AC 63 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = [input() for _ in range(N)]
key = [0 for _ in range(M)]
for s in S:
    for j in range(M):
        if s[j]=="x":
            key[j]+=1
print(max(key)+1)
0