結果

問題 No.1908 Assault for Keys
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-30 13:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 70,016 KB
最終ジャッジ日時 2024-06-29 19:04:24
合計ジャッジ時間 2,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 76 ms
69,888 KB
testcase_03 AC 67 ms
68,864 KB
testcase_04 AC 70 ms
69,376 KB
testcase_05 AC 71 ms
69,632 KB
testcase_06 AC 74 ms
69,376 KB
testcase_07 AC 70 ms
69,248 KB
testcase_08 AC 68 ms
69,120 KB
testcase_09 AC 71 ms
69,248 KB
testcase_10 AC 68 ms
69,504 KB
testcase_11 AC 72 ms
69,760 KB
testcase_12 AC 73 ms
69,504 KB
testcase_13 AC 74 ms
69,632 KB
testcase_14 AC 72 ms
69,504 KB
testcase_15 AC 70 ms
69,632 KB
testcase_16 AC 37 ms
52,992 KB
testcase_17 AC 48 ms
60,288 KB
testcase_18 AC 73 ms
70,016 KB
testcase_19 AC 64 ms
68,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=[input() for _ in range(n)]
ans=0
for j in range(m):
    tmp=0
    for i in range(n):
        if s[i][j]=='x':
            tmp+=1
    ans=max(tmp,ans)
print(ans+1)
0