結果

問題 No.1908 Assault for Keys
ユーザー hir355hir355
提出日時 2022-04-22 21:22:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 77,136 KB
最終ジャッジ日時 2023-09-06 07:38:54
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,316 KB
testcase_01 AC 78 ms
71,600 KB
testcase_02 AC 104 ms
76,728 KB
testcase_03 AC 102 ms
76,752 KB
testcase_04 AC 103 ms
76,880 KB
testcase_05 AC 103 ms
77,028 KB
testcase_06 AC 107 ms
76,892 KB
testcase_07 AC 104 ms
77,136 KB
testcase_08 AC 101 ms
76,828 KB
testcase_09 AC 104 ms
76,988 KB
testcase_10 AC 99 ms
76,824 KB
testcase_11 AC 103 ms
76,808 KB
testcase_12 AC 101 ms
76,672 KB
testcase_13 AC 103 ms
76,888 KB
testcase_14 AC 102 ms
76,852 KB
testcase_15 AC 103 ms
76,880 KB
testcase_16 AC 74 ms
71,608 KB
testcase_17 AC 88 ms
75,408 KB
testcase_18 AC 105 ms
76,744 KB
testcase_19 AC 94 ms
76,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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