結果

問題 No.1908 Assault for Keys
ユーザー tobusakanatobusakana
提出日時 2022-05-01 23:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 86,700 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2023-09-13 17:01:55
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,344 KB
testcase_01 AC 75 ms
71,296 KB
testcase_02 AC 106 ms
76,732 KB
testcase_03 AC 99 ms
77,008 KB
testcase_04 AC 97 ms
77,028 KB
testcase_05 AC 99 ms
76,996 KB
testcase_06 AC 100 ms
76,644 KB
testcase_07 AC 98 ms
76,740 KB
testcase_08 AC 93 ms
76,944 KB
testcase_09 AC 97 ms
76,564 KB
testcase_10 AC 92 ms
76,432 KB
testcase_11 AC 99 ms
76,676 KB
testcase_12 AC 98 ms
76,740 KB
testcase_13 AC 97 ms
76,900 KB
testcase_14 AC 96 ms
76,552 KB
testcase_15 AC 99 ms
76,752 KB
testcase_16 AC 73 ms
71,216 KB
testcase_17 AC 86 ms
75,540 KB
testcase_18 AC 100 ms
76,672 KB
testcase_19 AC 88 ms
76,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
xnum = [0] * M

for i in range(N):
    s = input()
    for j in range(M):
        if s[j] == "x":
            xnum[j] += 1
            
print(max(xnum) + 1)
0